how can i do this in asp.net?
classic asp example :
<table>
<% for i=0 to 10 %>
<tr>
<td><% response.write %></td>
</tr>
<% next %>
</table>
any ways to do this in asp.net?
thanks:(
Printable View
how can i do this in asp.net?
classic asp example :
<table>
<% for i=0 to 10 %>
<tr>
<td><% response.write %></td>
</tr>
<% next %>
</table>
any ways to do this in asp.net?
thanks:(
That same code should work for you, except you need something after the response.write
eh may i know what to put after response.write?
because i am more on the java side..and some knowledge in asp, just want to rapidly create an web application using asp.net.
whatever i declare in the class.aspx.vb can i use it with the response.write?
What are a you tring to write to the screen?
response.write ("hello")
response.write i