从 C# ASP.NET 代码隐藏调用 javascript 函数
我想从代码隐藏文件中调用 javascript 函数 - 但不是在用户单击某些内容之后调用。当条件为真时,将发生调用。
有没有一种简单的方法可以做到这一点?
编辑:
我现在已经用查询字符串值“修复”了它,并将 ClientScript.IsStartupScriptRegistered 放入 Page_Load...但我希望可以有一种更简洁的方法。
I want to call a javascript function from the code-behind file - but not after the user clicked something. The call will take place when a condition is true.
Is there a simple way to do this?
Edit:
I have now "fixed" it with querystring values, and putting ClientScript.IsStartupScriptRegistered in Page_Load...but I wish there could be a neater way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Page.RegisterClientScriptBlock(现在 ClientScriptManager.RegisterStartupScript 方法) 或 Page.RegisterStartupScript(现在 ClientScriptManager.RegisterClientScriptBlock)。但是,这取决于您实际想要实现的目标。
You can use Page.RegisterClientScriptBlock(now ClientScriptManager.RegisterStartupScript Method) or Page.RegisterStartupScript (now ClientScriptManager.RegisterClientScriptBlock). But, that depends on what you are actually trying to accomplish.
由于您希望在服务器上发生更改时执行 js 代码,因此您需要首先考虑如何从客户端(js)代码监视服务器上的更改。
window.setTimeout(...)
),jQuery.get(...)
);Since you want to execute js code when something changes on the server, then you need to first think how you are going to monitor changes on the server from the client (js) code.
window.setTimeout(...)
) running on the client side,jQuery.get(...)
for example);更简洁的方式!
在 .aspx 中
标记底部附近:
在 .cs 中
neater way!
In .aspx near the bottom of the
</form>
tag:In .cs