Quote:
|
Originally Posted by Omega2
can anyone help me ?
I need to create a certain ammount of text boxes depending on a value of a text box on previous page
How can i go to do this ?
|
Well figured it out without paying someone to do it for me
<%
dim icount
for icount = 1 to cint(numberMailboxes) %>
<tr>
<td>* Username</td>
<td><input type="text" name="Username_<%= icount %>"> </td>
<td>* Password</td>
<td colspan="2"><input type="text" name="Password_<%= icount %>"></td>
</tr>
<% next %>