I'm trying to use radajaxpanel in my page, but got the below exception.
"The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>)."
Below is the code how am trying to use this in my page.
<div id="pnlAddView">
<telerik:radajaxpanel id="upSave" loadingpanelid="RadAjaxLoadingPanel1" runat="server">
<asp:TextBox ID="txtFirstName" runat="server"></asp:TextBox>
<br />
<asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" />
</telerik:radajaxpanel>
</div>
<div id="pnlMessageView" style="display: none;">
Some static contents here.
</div>
Thanks.
"The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>)."
Below is the code how am trying to use this in my page.
<div id="pnlAddView">
<telerik:radajaxpanel id="upSave" loadingpanelid="RadAjaxLoadingPanel1" runat="server">
<asp:TextBox ID="txtFirstName" runat="server"></asp:TextBox>
<br />
<asp:Button ID="btnSubmit" runat="server" OnClick="btnSubmit_Click" />
</telerik:radajaxpanel>
</div>
<div id="pnlMessageView" style="display: none;">
Some static contents here.
</div>
Thanks.