Mi pregunta va por el lado de que si es posible hacer un form en aspx sin
usar el atributo runat="server" para enviar los datos al server, mas o menos
asi :
<form action="prueba1.aspx" method="post">
Nombre <asp:TextBox ID="txtNombre" runat="server" />
Ciudad <asp:TextBox ID="txtDireccion" runat="server" TextMode="MultiLine"
Rows="3" />
Sexo <asp:RadioButtonList ID="rbSexo" runat="server">
<asp:ListItem id="valor1" runat="server" value="masculino"/>
<asp:ListItem id="valor2" runat="server" value="femenino"/>
</asp:RadioButtonList>
Ciudad <asp:DropDownList ID="ddlCiudades" runat="server">
<asp:ListItem id="ciudad1" runat="server" value="Trujillo"/>
<asp:ListItem id="ciudad2" runat="server" value="Chiclayo"/>
</asp:DropDownList>
<input type="submit" name="Submit" value="Enviar">
</form>
cuando lo pruebo no funciona, es correcto eso (que no funcione)
por que mi idea es enviar estos datos a la pagina que ven el
action="prueba1.asp"
Leer las respuestas