ASP

JSP

VBScript

Javascript

Jscript

Java

Javabeans

XML

CGI

Perl

PHP

ColdFusion

    Περιγραφή        Εγκατάσταση        Παράδειγμα        Συγκρίσεις

 

Ένα παράδειγμα για τη δημιουργία δεντρικής δομής με την ASP είναι το εξής :

<HTML>
<HEAD>

<TITLE>obout.com</TITLE>
<BASE TARGET="_main">
</HEAD>
<BODY style="margin:0;">
<% Dim oTree, html
Set oTree = Server.CreateObject("obout_ASPTreeView.Tree")

' First node in Classic tree should be always "root".
' For XP styles please see XP code examples.
html = "<a class=ob_a href=""http://www.obout.com"">OBOUT.com Home</a>"

oTree.Add "", "root", html, True, "book.gif"


html = "My Jobs"

oTree.Add "root", "a2", html, True, "mydoc.gif"

html = "NYC DA Office"
oTree.Add "a2", "b4", html, True, "scales.gif"


html = "<a class=ob_a href=""http://www.dlj.com"">Hillside IT</a>"
oTree.Add "a2", "b5", html

' More nodes here.
' More nodes here.

' More nodes here.

' Write treeview to your page.
Response.Write oTree.HTML
Set oTree = Nothing
%>
</BODY>
</HTML>