[thelist] ASP equivalent to CFML question

Norman Beresford n.beresford at anansi.co.uk
Fri May 17 03:35:01 CDT 2002


Hi Eric

Just had a quick search on google and going by a brief read of one of the
results the simple answer....no.  What you would do is create a recordset,
the loop through it (or through an array created from it) and writing the
results to the browers:

...
For i = 0 to Ubound(arrayResultSet)
%>
<tr><td><%= arrayResultSet(0,i) %></td><td><%= arrayResultSet(1,i)
%></td></tr>
<%
Next
....

However in asp.net you have the datagrid control which is far closer to my
understanding of the cfoutput tag.

HTH

Norman




More information about the thelist mailing list