在Page_Load()中添加OnLoad()?

发布于 2024-11-03 02:36:45 字数 171 浏览 3 评论 0原文

我在 Asp.net 页面的 Page_Load 中需要读取一些数据库内容。

if (xxx == 1)
  //Add OnLoad("clock()")

如何做到这一点? 如何在页面加载方法中添加 JavaScript 时钟的 OnLoad-Method?

I have a few Database things to read in the Page_Load of my Asp.net page.

if (xxx == 1)
  //Add OnLoad("clock()")

How to do this?
How to add a OnLoad-Method for a JavaScript clock in the page load method?

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

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

发布评论

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

评论(3

简单爱 2024-11-10 02:36:45

1st 让你的 body 标签成为服务器控件

<body runat="server" id="BodyTag">

2nd 引用它

if (xxx == 1)  
  BodyTag.Attributes.Add("onload", "clock()");

1st Make your body tag a servercontrol

<body runat="server" id="BodyTag">

2nd reference it like

if (xxx == 1)  
  BodyTag.Attributes.Add("onload", "clock()");
预谋 2024-11-10 02:36:45

使用 RegisterClientScriptBlock 方法将客户端代码添加到页面:

Page.ClientScript.RegisterClientScriptBlock(
  this.GetType(),
  "onload",
  "window.onload = function(){ clock(); }",
  true
);

Use the RegisterClientScriptBlock method to add client code to the page:

Page.ClientScript.RegisterClientScriptBlock(
  this.GetType(),
  "onload",
  "window.onload = function(){ clock(); }",
  true
);
天涯沦落人 2024-11-10 02:36:45

Page_Load中注册启动脚本。 ClientScriptManager (http://msdn.microsoft.com/en-us/library/z9h4dk8y .aspx) 或 ScriptManager (http://msdn.microsoft.com/en-us/library/bb310408 .aspx)...以合适的为准。

string clockStuff =
    @"function callClockFunction(){ 
    Sys.Application.remove_load(callClockFunction); 
    clock(); }
    Sys.Application.add_load(callClockFunction);";
ScriptManager.RegisterStartupScript(this, this.GetType(), "callClockFunction", clockStuff, true);

Register a startup script in the Page_Load. ClientScriptManager (http://msdn.microsoft.com/en-us/library/z9h4dk8y.aspx) or ScriptManager (http://msdn.microsoft.com/en-us/library/bb310408.aspx)... whichever is appropriate.

string clockStuff =
    @"function callClockFunction(){ 
    Sys.Application.remove_load(callClockFunction); 
    clock(); }
    Sys.Application.add_load(callClockFunction);";
ScriptManager.RegisterStartupScript(this, this.GetType(), "callClockFunction", clockStuff, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文