是否可以使用标记将 ScriptReference 添加到母版页 CompositeScript 中?

发布于 2024-07-09 11:38:55 字数 634 浏览 11 评论 0原文

我想在我的母版页中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人 2024-07-16 11:38:55

尝试使用 标记。 它具有与脚本管理器相同的子标签,但其设计用于内容表单。 (您不会收到“每页只有一个 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文