Friday, 1 June 2012

updatepanel does not have a public property named

This error comes because you missed <ContentTemplate> inside update panel.


  <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <asp:Button ID="Button1" runat="server" Text="Button" />
        </ContentTemplate>
    </asp:UpdatePanel>

No comments:

Post a Comment