D
Des
I am trying to get to grips with .net database. I have frequently used
record sets with web pages in html. Using code like
While rs.eof = false
<td><%=rs("Name")%></td><td><%=rs("Address")%></td>
Rs.movenext
This was simple No I seem to have to write
<td><%tblProducts.Rows(0)("Quantity")%></td>
I know Rows(1) is the next record and I could have a variable here, but
is there no EOF and no MoveNext anymore. All the documentation in books
(Including Microsoft explain how great it is to use with the data
control. But if I don't use the data control I am up the creek
without a paddle. I have checked extensively for this information
including MSDN without success.
Desmond.
record sets with web pages in html. Using code like
While rs.eof = false
<td><%=rs("Name")%></td><td><%=rs("Address")%></td>
Rs.movenext
This was simple No I seem to have to write
<td><%tblProducts.Rows(0)("Quantity")%></td>
I know Rows(1) is the next record and I could have a variable here, but
is there no EOF and no MoveNext anymore. All the documentation in books
(Including Microsoft explain how great it is to use with the data
control. But if I don't use the data control I am up the creek
without a paddle. I have checked extensively for this information
including MSDN without success.
Desmond.