Hi everyone!
I'm just started writing a .NET app and I've already smashed myself against the wall!
Can you people tell me how can I set a different action to my form instead of the default one? my page's name is default.aspx and the code I wrote was:
<form name="frm1" method="post" action="vA.aspx" runat="server">
<asp:TextBox id="mytxt" runat="server" />
<input type="submit" value="Next ->" name="btnNext">
</form>
But When I look at the code in the html of the compiled page I see:
<form name="frm1" method="post" action="default.aspx" id="frm1">
<input type="text" id="mytxt">
<input type="submit" value="Next ->" name="btnNext">
</form>
What am I doing wrong?
Thank you in advance....
JuanD