在单个内容页面中覆盖 ASP 母版页 html?

发布于 2024-09-02 09:03:39 字数 93 浏览 4 评论 0原文

我正在使用 ASP 母版页,并且我想向母版页中的 添加一个“onkeypress”事件处理程序,但仅限于单个页面。

我该怎么做?

I'm using ASP Master pages, and I would like to add an "onkeypress" event handler to the <body> in the Master page, but only for a single page.

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

或十年 2024-09-09 09:03:39

我会向 MasterPage 添加一个公共属性,例如 BodyOnKeyPress。然后在MasterPage的PreRender事件中设置body标签的OnKeyPress属性。客户端页面只需在 Master 的 PreRender 事件触发之前设置此属性。

这是空中代码,因为我没有要测试的项目。但它应该是这样的:

MasterPage Markup:

<%-- Mark the body tag with runat="server", and give it an ID to reference in code. --%>
<body id="mainBody" runat="server">
    ...
</body>

MasterPage CodeBehind:

protected void Page_PreRender(...) {
    mainBody.Attributes["onkeypress"] = this.BodyOnKeyPress;
}

public string BodyOnKeyPress {
    get {
        return ViewState["BodyOnKeyPress"];
    }
    set {
        ViewState["BodyOnKeyPress"] = value;
    }
}

I would add a public property to the MasterPage, something like BodyOnKeyPress. Then set the OnKeyPress attribute of the body tag in the MasterPage's PreRender event. Client pages just need to set this property before the Master's PreRender event fires.

This is air code, as I don't have a project to test on. But it should be something like this:

MasterPage Markup:

<%-- Mark the body tag with runat="server", and give it an ID to reference in code. --%>
<body id="mainBody" runat="server">
    ...
</body>

MasterPage CodeBehind:

protected void Page_PreRender(...) {
    mainBody.Attributes["onkeypress"] = this.BodyOnKeyPress;
}

public string BodyOnKeyPress {
    get {
        return ViewState["BodyOnKeyPress"];
    }
    set {
        ViewState["BodyOnKeyPress"] = value;
    }
}
傾旎 2024-09-09 09:03:39

也可以使用该页面内容中的脚本来完成...我将使用 jQuery 来简化这个想法

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<script type="text/javascript">
    $(function () {
        $(document.body).keypress(function(){});
    });
</script>

</asp:Content>

Could also be done with a script in the content of that page... I will be using jQuery to simplify the idea

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<script type="text/javascript">
    $(function () {
        $(document.body).keypress(function(){});
    });
</script>

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