从 asp.net 中的服务器代码执行 JavaScript

发布于 2024-10-17 21:26:58 字数 131 浏览 1 评论 0原文

这是我需要做的:我需要在用户单击按钮后执行一些服务器端代码,然后我需要执行一些客户端代码。 OnClientClick 在 onClick 之前被调用;而我需要的是相反的。

有办法做到这一点吗?看来我必须从服务器代码执行 JS 代码。

Here is what I need to do: I need to execute some server side code after a user clicks on a button, THEN I need to execute some client side code. OnClientClick gets invoked BEFORE the onClick; and what I need is the opposite.

Is there a way to do this? It looks like I will have to execute JS code from the server code.

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

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

发布评论

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

评论(1

っ〆星空下的拥抱 2024-10-24 21:26:58

您可以在应用程序后面的代码中使用 RegisterStartupScript。

这会将需要调用的 JavaScript 代码放置在 body.onload 事件中。

You could use RegisterStartupScript in the code behind of your app.

This would place the javascript code you need to be called in the body.onload event.

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