Form tag with runat=server

O

ola

Please Help. I get this error in one of my files

Control 'AdminTabControl1_lnk0' of type 'LinkButton' must
be placed inside a form tag with runat=server.
 
E

E620

In the designer HTML of your page you have an asp LinkButton control
element, I guess it will look something like this:

<asp:LinkButton id="AdminTabControl1" [other properties & etc.] />

The error message says that this LinkButton control needs to be "placed
inside a form tag with runat=server". It wants something like this:

<form id=FormName runat=server> <-- form tag with runat=server
<asp:LinkButton [etc.] /> <-- LinkButton placed inside it
</form>
 
Joined
Sep 8, 2008
Messages
3
Reaction score
0
What if form runat="server" is already given.....................


and the same problem still coming ..

Control '......' of type 'LinkButton' must be placed inside a form tag with runat=server
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top