从 asp.net 中的服务器代码执行 JavaScript
这是我需要做的:我需要在用户单击按钮后执行一些服务器端代码,然后我需要执行一些客户端代码。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在应用程序后面的代码中使用 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.