error in textbox and table
-
Hi all . I insert a table in my form then I righ click on it and change it to "run as server" then I put a textbox in it and name it txtuser. when I run the program this error appears in the explorer ( the page i run) : Server Error in '/TESTING' Application. -------------------------------------------------------------------------------- Control 'txtuser' of type 'TextBox' must be placed inside a form tag with runat=server. please help me
-
Hi all . I insert a table in my form then I righ click on it and change it to "run as server" then I put a textbox in it and name it txtuser. when I run the program this error appears in the explorer ( the page i run) : Server Error in '/TESTING' Application. -------------------------------------------------------------------------------- Control 'txtuser' of type 'TextBox' must be placed inside a form tag with runat=server. please help me
Hi Can you post the part of the html code that giving the problem ?
-
Hi Can you post the part of the html code that giving the problem ?
-
< asp:TextBox id="TextBox1" runat="server"> it run as server but i face problem when running (debug) its error : Control 'TextBox1' of type 'TextBox' must be placed inside a form tag with runat=server. plz help me:((
sanaziuse wrote:
< asp:TextBox id="TextBox1" runat="server">
Place all your server controls inside a form with runat="server" attribute. For example,
< asp:TextBox id="TextBox1" runat="server"/> < asp:TextBox id="TextBox2" runat="server"/> < asp:TextBox id="TextBox3" runat="server"/>
Regards, Venkatesh Mookkan. Software Engineer, India My: Website | Yahoo Group
-
< asp:TextBox id="TextBox1" runat="server"> it run as server but i face problem when running (debug) its error : Control 'TextBox1' of type 'TextBox' must be placed inside a form tag with runat=server. plz help me:((
Hi i think the problem is in HTML itself see the end tag of the form also < asp:TextBox id="TextBox1" runat="server"> NO end tag for textbox >No end tag for (Instead of ) OK next if then also preoblem is not solve give whole html file so that i can check it :)
-
Hi Can you post the part of the html code that giving the problem ?
Hi All, You need to make the cell that contained the textbox run at server not only the table
-
Hi All, You need to make the cell that contained the textbox run at server not only the table
-
sanaziuse wrote:
< asp:TextBox id="TextBox1" runat="server">
Place all your server controls inside a form with runat="server" attribute. For example,
< asp:TextBox id="TextBox1" runat="server"/> < asp:TextBox id="TextBox2" runat="server"/> < asp:TextBox id="TextBox3" runat="server"/>
Regards, Venkatesh Mookkan. Software Engineer, India My: Website | Yahoo Group
-
sanaziuse wrote:
< asp:TextBox id="TextBox1" runat="server">
Place all your server controls inside a form with runat="server" attribute. For example,
< asp:TextBox id="TextBox1" runat="server"/> < asp:TextBox id="TextBox2" runat="server"/> < asp:TextBox id="TextBox3" runat="server"/>
Regards, Venkatesh Mookkan. Software Engineer, India My: Website | Yahoo Group