Asp.net error: Control 'ctl00 _ ctl00_contentplaceholder2_contentplaceholderright_listview1_ctrl0_del

Source: Internet
Author: User

Performance:

Of course, it may be that another control must be placed in the form.

 

Cause:

In normal cases, you can add a form directly, but if you use the master page, the real cause of this error is that the contentplaceholder in the master page is mistakenly placed outside <form>:

 

<Form ID = "form1" runat = "server">
<Asp: linkbutton id = "PB" runat = "server"> <B> P </B> roduct backlog </ASP: linkbutton>
<Asp: linkbutton id = "SB" runat = "server"> <B> S </B> Print backlog </ASP: linkbutton>
</Form>

<Asp: contentplaceholder id = "contentplaceholder1" runat = "server">
</ASP: contentplaceholder>
<Asp: contentplaceholder id = "contentplaceholder2" runat = "server">
</ASP: contentplaceholder>

 

Changed:

 

<Form ID = "form1" runat = "server">
<Asp: linkbutton id = "PB" runat = "server"> <B> P </B> roduct backlog </ASP: linkbutton>
<Asp: linkbutton id = "SB" runat = "server"> <B> S </B> Print backlog </ASP: linkbutton>

<Asp: contentplaceholder id = "contentplaceholder1" runat = "server">
</ASP: contentplaceholder>
<Asp: contentplaceholder id = "contentplaceholder2" runat = "server">
</ASP: contentplaceholder>
</Form>

Everything works.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.