是否可以使用标记将 ScriptReference 添加到母版页 CompositeScript 中?
我想在我的母版页中使用 ScriptManager 和 CompositeScript 组件来包含站点范围的 javascript,但将其添加到我的“Web 内容表单”中的该列表中。 我确信这可以在代码隐藏中完成,但最好我想在标记中完成。 这种事情可以做吗?
在:MasterPage.master
<asp:ScriptManager ID="ScriptManager" runat="server" EnableScriptCombine="True">
<CompositeScript>
<Scripts>
<asp:ScriptReference name="" Assembly="" Path="/client/js/main.js"/>
</Scripts>
</CompositeScript>
</asp:ScriptManager>
在:Content.aspx
<asp:ScriptReference name="" Assembly="" Path="/client/js/other.js"/>
I'd like to use the ScriptManager and CompositeScript components in my master page to include site-wide javascript, but add to that list in my "Web Content Form". I'm sure that can be done in the code-behind, but optimally I'd like to do it in markup. Can this sort of thing be done?
In: MasterPage.master
<asp:ScriptManager ID="ScriptManager" runat="server" EnableScriptCombine="True">
<CompositeScript>
<Scripts>
<asp:ScriptReference name="" Assembly="" Path="/client/js/main.js"/>
</Scripts>
</CompositeScript>
</asp:ScriptManager>
In: Content.aspx
<asp:ScriptReference name="" Assembly="" Path="/client/js/other.js"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
标记。 它具有与脚本管理器相同的子标签,但其设计用于内容表单。 (您不会收到“每页只有一个 ScriptManager”错误)我不确定这是否正是您正在寻找的,因为您通过 ScriptManagerProxy 添加的脚本仅在您添加它的 ContentForm 上可用(我认为)。 它不会是站点范围内的。 但是,如果您需要它在站点范围内使用,为什么不将其添加到 MasterPage 中呢?
希望有帮助!
Try using the
<asp:ScriptManagerProxy>
tag. It's got the same child tags as script manager, but its designed to be used on the content form. (You won't get the 'Only one ScriptManager per page' error)I'm not sure if that's exactly what you are looking for, because the script you add via the ScriptManagerProxy is only available on the ContentForm that you add it on (I think). It wouldn't be site wide. However, if you need it to be site wide, why not just add it to the MasterPage anyway?
Hope that helps!