本文介绍了如何在处理程序中调用JavaScript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在点网应用程序的http处理程序中调用javascript
how to call javascript in http handler in dot net application
推荐答案
Response.Write("<script>alert('alert message');</script>");
第二个是使用ClientScript.RegisterClientScriptBlock
如果要让方法后面的代码调用aspx或单独的js文件中某个地方引用的任何JavaScript方法,则应使用ClientScript为您执行以下操作:
The second one is to use ClientScript.RegisterClientScriptBlock
If you want the code behind method to call any JavaScript Method referenced somewhere in your aspx or in a separate js file you should use ClientScript to do this for you like below:
Page.ClientScript.RegisterClientScriptBlock(typeof(Page), "AnyNameForScriptBlock", "NameOfJavaScriptMethod()", true);
希望这会有所帮助!
快乐编码:)
Sunny K
Hope this helps!
Happy Coding:)
Sunny K
这篇关于如何在处理程序中调用JavaScript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!