2014-07-09 67 views
5
內容頁

我有一個關於ScriptManager的問題,我的問題是: 我在母版頁需要一個ScriptManager此:的ScriptManager在母版頁和

<asp:ScriptManager ID="scriptManger1" runat="server"> 
    <Scripts> 
     <asp:ScriptReference Name="MsAjaxBundle" /> 
     <asp:ScriptReference Name="jquery" /> 
     <asp:ScriptReference Name="bootstrap" /> 
     <asp:ScriptReference Name="respond" /> 
     <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" /> 
     <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" /> 
     <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" /> 
     <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" /> 
     <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" /> 
     <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" /> 
     <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" /> 
     <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" /> 
     <asp:ScriptReference Name="WebFormsBundle" /> 
    </Scripts> 
</asp:ScriptManager> 

,我需要在我的內容頁面的ScriptManager,因爲如果當我運行我的應用程序時,我從這裏移除給我一個錯誤,因爲我需要一個ScriptManager,如果我在運行我的應用程序時放置了一個ScripManager,因爲我有2個ScriptManager,因爲我在主頁中有1個,而在內容頁中有1個。

我的問題是我如何解決這個問題?

+0

究竟是你所得到的錯誤? – tnw

+0

這裏的標籤在哪裏,請標記它? – CarAlex

回答

11

你是對的,你可以只有1個ScriptManager。這絕對應該放在您的母版頁中。要在其他頁面中獲得ScriptManager功能,您需要使用ScriptManagerProxy。將此代理視爲將所有對它的請求轉移到在主頁面中加載的實際ScriptManager。

折騰這個小傢伙在其他網頁:

<asp:ScriptManagerProxy id="ScriptManagerProxy1" runat="server"/> 

下面是關於如何更詳細將此一個良好的閱讀:

http://www.dotnetheaven.com/article/ajax-package-scriptmanagerproxy-control-in-asp.net-using-vb.1