Hey,
I'm currently developing my new homepage and I'm stuck at basic issue. Could some of you help me out?
<%
ID=rs("ID")
pID=rs("parentID")
nName=rs("text")
%>
<%Do until NOT rs.EOF%>
<%
If pID=0 then
response.write(nName) 'as root
prevID=pID
pID=ID
If prevID=pID then
response.write("space" & nName) 'roots follower.
End If
Else
'if there is no value then we do nothing.
End If
%>