R
Rob
I am new to ASP.NET and am trying to convert an old ASP project to a C# web
application. I have a page with a very long form on. On part of the form
has a series of comboboxes that a populated with data from a database. In
my old ASP project I wrote the HTML doing something like this
<% for i = 1 to 10 %>
<tr>
<td><select name='test'><option value='<%= i %></option><.select></td>
</tr>
<%next%>
This is not the exact code an is abbreviated just for this post. How do I
do something similar in .NET? Also, is there a way of doing this with a set
of radio buttons with having to use the radiobuttonlist control? I think
the design options are a little limited for this control.
Thanks.
Rob
application. I have a page with a very long form on. On part of the form
has a series of comboboxes that a populated with data from a database. In
my old ASP project I wrote the HTML doing something like this
<% for i = 1 to 10 %>
<tr>
<td><select name='test'><option value='<%= i %></option><.select></td>
</tr>
<%next%>
This is not the exact code an is abbreviated just for this post. How do I
do something similar in .NET? Also, is there a way of doing this with a set
of radio buttons with having to use the radiobuttonlist control? I think
the design options are a little limited for this control.
Thanks.
Rob