I followed the instructions for embeding script and skin in a control when outcache is present on a page and I still can't get my code to work.
On my master page I have the following code
In my usercontrol I have the following declarations
If I take out outputcache from my pages and enable embedded scripts and skins everything works fine. Can someone tell me what I'm doing wrong?
On my master page I have the following code
<head runat="server"> <title></title> <link id="Link1" runat="server" href="~/Skins/Menu.css" rel="stylesheet" type="text/css" /> <link id="Link2" runat="server" href="~/Skins/Default/Menu.Default.css" rel="stylesheet" type="text/css" /> <link id="Link3" runat="server" href="~/Skins/SiteMap.css" rel="stylesheet" type="text/css" /> <link id="Link4" runat="server" href="~/Skins/Default/SiteMap.Default.css" rel="stylesheet" type="text/css" /> <link id="Link5" runat="server" href="~/Skins/Tooltip.css" rel="stylesheet" type="text/css" /> <link id="Link6" runat="server" href="~/Skins/Window.css" rel="stylesheet" type="text/css" /> <link id="Link7" runat="server" href="~/Skins/Default/ToolTip.Default.css" rel="stylesheet" type="text/css" /> <link id="Link8" runat="server" href="~/Skins/Default/Window.Default.css" rel="stylesheet" type="text/css" /> <link id="Link9" runat="server" href="~/Skins/Telerik/ToolTip.Telerik.css" rel="stylesheet" type="text/css" /> <link id="LinkA" runat="server" href="~/Skins/Telerik/Window.Telerik.css" rel="stylesheet" type="text/css" /></head><telerik:RadScriptManager ID="RadScriptManager1" runat="server"> <Scripts> <asp:ScriptReference Path="~/Scripts/Common/Core.js" /> <asp:ScriptReference Path="~/Scripts/Common/jQuery.js" /> <asp:ScriptReference Path="~/Scripts/Common/jQueryPlugins.js" /> <asp:ScriptReference Path="~/Scripts/Common/jQueryPlugins.js" /> <asp:ScriptReference Path="~/Scripts/Common/PopUp/PopUpScripts.js" /> <asp:ScriptReference Path="~/Scripts/Common/Animation/AnimationScripts.js" /> <asp:ScriptReference Path="~/Scripts/Common/Navigation/NavigationScripts.js" /> <asp:ScriptReference Path="~/Scripts/Menu/RadMenuScripts.js" /> <asp:ScriptReference Path="~/Scripts/SiteMap/RadSiteMap.js" /> <asp:ScriptReference Path="~/Scripts/Window/RadWindowScripts.js" /> <asp:ScriptReference Path="~/Scripts/Window/RadWindowManager.js" /> <asp:ScriptReference Path="~/Scripts/ToolTip/RadToolTip.js" /> <asp:ScriptReference Path="~/Scripts/ToolTip/RadToolTipManager.js" /> <asp:ScriptReference Path="~/Scripts/Common/TouchScrollExtender.js" /> </Scripts> </telerik:RadScriptManager><telerik:RadToolTipManager runat="server" AnimationDuration="300" ShowDelay="200" HideDelay="10" ID="RadToolTipManager1" Width="480px" RelativeTo="BrowserWindow" Animation="Slide" Position="TopCenter" OnAjaxUpdate="OnAjaxUpdate" Skin="Telerik" OffsetY="150" ShowEvent="OnClick" EnableEmbeddedScripts="false" EnableEmbeddedBaseStylesheet="false" EnableEmbeddedSkins="false" /><telerik:RadWindowManager ID="Singleton" Skin="Telerik" Width="400" Height="630" VisibleStatusbar="false" Behaviors="Close,Move, Resize" runat="server" EnableShadow="true" OnClientClose="OnClientClose" Animation="Fade" AutoSize="false" AutoSizeBehaviors="Default" DestroyOnClose="False" VisibleOnPageLoad="true" ShowContentDuringLoad="False" EnableEmbeddedScripts="false" EnableEmbeddedBaseStylesheet="false" EnableEmbeddedSkins="false"></telerik:RadWindowManager>