我一直在試圖從網頁表單使用AjaxControlToolkit(從NuGet下載)7.0607版本,但沒有運氣的情況下使用masterpage。 正在運行DotNet 4.5 MasterPage上有ToolkitScriptManager,但它不會傳遞給子頁面。AjaxControlToolkit不適用於使用MasterPage的頁面
我可以創建一個獨立的aspx頁面,在頁面上放置一個scriptmanager並且控件工作得很好,所以我認爲有一個設置缺失。
做這項工作的程序是什麼?
母版腳本塊是這樣:
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
<Scripts>
<asp:ScriptReference Assembly="AjaxControlToolkit" Name="ExtenderBase.BaseScripts.js" />
<asp:ScriptReference Assembly="AjaxControlToolkit" Name="Common.Common.js" />
<asp:ScriptReference Name="jquery" />
<asp:ScriptReference Name="jquery.ui.combined" />
<asp:ScriptReference Name="WebForms.js" Path="~/Scripts/WebForms/WebForms.js" />
<asp:ScriptReference Name="WebUIValidation.js" Path="~/Scripts/WebForms/WebUIValidation.js" />
<asp:ScriptReference Name="MenuStandards.js" Path="~/Scripts/WebForms/MenuStandards.js" />
<asp:ScriptReference Name="GridView.js" Path="~/Scripts/WebForms/GridView.js" />
<asp:ScriptReference Name="DetailsView.js" Path="~/Scripts/WebForms/DetailsView.js" />
<asp:ScriptReference Name="TreeView.js" Path="~/Scripts/WebForms/TreeView.js" />
<asp:ScriptReference Name="WebParts.js" Path="~/Scripts/WebForms/WebParts.js" />
<asp:ScriptReference Name="Focus.js" Path="~/Scripts/WebForms/Focus.js" />
<asp:ScriptReference Name="WebFormsBundle" />
</Scripts>
</ajaxToolkit:ToolkitScriptManager>
顯示母版頁標記 –
什麼尤里說 - 我從來沒有過與ToolkitScriptManager問題上的母版頁不是從孩子訪問。 –
這裏的標題: <%@主LANGUAGE = 「VB」 AutoEventWireup = 「真」 代碼隱藏= 「Site.master.vb」 繼承= 「TinySearch.SiteMaster」 %> 很抱歉 - 無房可發佈整個頁面。 – MC9000