I’m using a form runat="server" in a main aspx page. This page calls user controls. If a user control has non server side form elements, such as:
<input type="text" name="lastname" id="txtlastname">
should those still show up in this.Request.Form? I don’t see them there.
The value is available in the Request.Form object
? Request.Form["lastname"]"this is the txt box"