faisalsham
Programmer
Hello all, I'm new to ASP. I have a text box control array created dynamically and I need to find a way to refer to the nth text box. I'm not sure how to do that. The code below just creates the text boxes and stores some value in them. Now how can I refer back to the nth text box through code? Thanks in advance.
Here's my code:
Here's my code:
Code:
<%
while not objrs.EOF
EntityPK = objrs.fields("ENTITY")
%>
<input type = "text" name="PK" value="<%=EntityPK%>">
<%
objrs.MoveNext
wend
%>