Hi:
I have masterpage with a RadScriptManager and a asp:panel (panel used for messages). In my one of my content pages, I have a RadAjaxPanel. In my code behind, I am updating the panel pnlErrors. Sometime the changes to pnlErrors does not display. Any suggestions?
Phil
I have masterpage with a RadScriptManager and a asp:panel (panel used for messages). In my one of my content pages, I have a RadAjaxPanel. In my code behind, I am updating the panel pnlErrors. Sometime the changes to pnlErrors does not display. Any suggestions?
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %><%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"> <title></title> <asp:ContentPlaceHolder ID="head" runat="server"> </asp:ContentPlaceHolder></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="masterPageRadScriptManager" runat="server" AsyncPostBackTimeout="180" > <Scripts> <asp:ScriptReference Path="Scripts/jquery-1.4.1.js" /> </Scripts> </telerik:RadScriptManager> ... <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="False" /> <telerik:RadMenu ID="RadMenu1" Runat="server" DataSourceID="SiteMapDataSource1" Width="100%" style="z-index:2900"> <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> </telerik:RadMenu> ... <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> <asp:Panel ID="pnlErrors" runat="server" EnableViewState="false"> </asp:Panel> </form> ...</body></html>Phil