JustinCase2
06-02-2006, 09:09 AM
Is there any way in asp .net 2.0 to get something equivalent to a VB recordset? I vant to fill a html table with data from a database, but I do not want to use any of the built in controls (using Visual Web Developer 2005). What I want to do is something like this:
do
response.write recordset1![Field1]
recordset1.movenext
loop until recordset1.eof=true
Anyone know how to do this in asp? Tried the dataset but it doesn't seem to have anywhere near the right functionality...
do
response.write recordset1![Field1]
recordset1.movenext
loop until recordset1.eof=true
Anyone know how to do this in asp? Tried the dataset but it doesn't seem to have anywhere near the right functionality...