Excerpt from my codee:
I redirect to a new page after submit, I'm not able retreive the form values, what am I doing wrong? Thanks
VB.NET:
Response.Write("<TD><form method='post' action='updRequest.aspx'><input type='text' SIZE='7' name='RunID" +rdData("ReqID").ToString() +"'></TD>")
Response.Write("<TD><input type='text' size=7 name='ControlNum" +rdData("ReqID").ToString() +"'></TD>")
Response.Write("<td><center><input type= 'CheckBox' name='Checkbox" +rdData("ReqID").ToString() +"'></td></tr>")
end while
Response.Write("<tr><td></td><td></td><td></td><td></td><td></td><TD><input type=button onClick=Request() value='Submit Request'></TD></tr></form>")
Response.Write("</table>")
I redirect to a new page after submit, I'm not able retreive the form values, what am I doing wrong? Thanks