-
form tag Error???
How would I solve this error?
Exception Details: System.Web.HttpException: Control 'info_rver' of type 'TextBox' must be placed inside a form tag with runat=server.
I made a WebForm.aspx in asp.net and put a textbox inside the form. When I call the WebForm the error occurred. I also tried to removed the runat=server from the form tag but the textbox was deleted.
Pls Help!!!
-
Re: form tag Error???
Hi!
The error you're gettin typically raises when the control is not inside the form tags like this:
HTML Code:
<form id="myForm" method="post" runat="server">
<asp:TextBox id="myTextBox" runat="server"></asp:TextBox>
</form>
Let's see code?
tsami
-
Re: form tag Error???