egroupware/phpgwapi/js/dhtmlxtree/samples/xml.asp
Ralf Becker b495b33d0a commit for Lars:
1) ajax proposal: proof of concept using xajax in felamimail to work without page reloads
2) also implemented IMAP ACL for cyrus and php5 (still needs some work)
2005-07-20 08:07:47 +00:00

15 lines
363 B
Plaintext

<?xml version="1.0"?>
<%
Response.ContentType="text/xml"
Dim url_id
Dim intCurrPos
url_var=request.querystring("id")
Response.Write "<tree id='"+url_var+"'>"
For intCurrPos = 0 To 4
Response.Write "<item child='1' id='"+url_var+CStr(intCurrPos)+"' text='Item "+url_var+"-"+CStr(intCurrPos)+"'></item>"
Next
Response.Write "</tree>"
%>