Posted on: 4/27/2015 3:44:24 AM | Views : 560

Hi All,
I am developing one website. In that website Im using master page and content place holder page. Once i used the content placeholder page Im getting below error

one or more <asp:content> controls do not correspond with <asp:contentplaceholder> control in the master page in asp.net

Correct the problem in code view:
   headingcontact

Coder:
Master Page <div> <asp:ContentPlaceHolder ID="ContentPlaceHolderExport" runat="server"></asp:ContentPlaceHolder> </div> About Us page(Content Placeholder Page) <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="About Us.aspx.cs" MasterPageFile="~/Forms/Export.Master" Inherits="WebApplication1.Forms.About_Us" %> <asp ...

Go to the complete details ...