I am using Prometheus v2007.3.1314.35, and have come across this error when using the RadAjaxManager and text from our ASP.NET App_GlobalResources\Resource.resx file.
Within the Resource.resx file I have a key btnSubmit with text value "Submit".
The text is displayed within the submit button correctly, & within the UpdatePanel, but if I try to use any Resource text on the page before or after the RadAjaxManager an error is thrown.
Here is the code to replicate the error.
For the page to work remove:
(Some Text outside asp:UpdatePanel "<%= Resources.Resource.btnSubmit %>")
<
asp:ScriptManager ID=ScriptManager1 runat=server />
<p />
Some Text outside asp:UpdatePanel "<%= Resources.Resource.btnSubmit %>"
<p />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="updPanel1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="updPanel1" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Transparency="30" BackColor="#E0E0E0" InitialDelayTime="500">
<asp:Image ID="Image1" runat="server" ImageUrl="~/images/icons/loading.gif" BorderWidth="0px" AlternateText="Loading" ></asp:Image>
</telerik:RadAjaxLoadingPanel>
<asp:UpdatePanel ID="updPanel1" runat="server" UpdateMode=Conditional ChildrenAsTriggers=true >
<ContentTemplate>
<p />
<asp:Label ID=Label1 runat=server Text="Button Clicked at " />
<p />
<asp:Button ID=Button1 runat=server OnClick="Button1_Click" Text="<%$ Resources:Resource,btnSubmit %>" />
<p />
Same Text within asp:UpdatePanel "<%= Resources.Resource.btnSubmit %>"
</ContentTemplate>
</asp:UpdatePanel>
Any Ideas?
Thanks