S
Shawn Ferguson
I'm new to ASP.NET and CSharp, I'm making the SLOW transition from classic ASP. I am truly amazed by the robustness of the new environment. However, I ran into a small problem. Before in ASP, I would create a loop below:
do while not rs.eof
<a href="myPage.asp?ID=<%=rs("myID")%> ><%=rs("Title")%></a>
movenext
loop
But now with .NET not sure what tool to use and how to use it. Would you care to offer any advice? Thanks ahead of time.
do while not rs.eof
<a href="myPage.asp?ID=<%=rs("myID")%> ><%=rs("Title")%></a>
movenext
loop
But now with .NET not sure what tool to use and how to use it. Would you care to offer any advice? Thanks ahead of time.