本文介绍了Web浏览器控件window.external始终返回异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在为我的一个应用程序使用Web浏览器控件.
我需要文档中的javascript函数才能通过objectforscripting调用应用程序中的函数.
我已将对象设置为这样的脚本
webBrowser1.ObjectForScripting = this;
我正在使用像这样的功能
I am using web browser control for one of my application.
I need the javascript function in the document to call a function in the application through objectforscripting.
I have set the object for scripting like this
webBrowser1.ObjectForScripting = this;
and I am using a function like this
public void getData()
{
lbl.Text="Something";
}
我正在这样调用函数
I am calling the function like this
<script type="text/javascript">
function callFunc(){window.external.getData();}
</script>
我总是收到无法获取未定义或空引用的属性" getData"的错误.
你们知道这个的任何解决方案吗? ?
I am always getting the error "Unable to get property ''getData'' of undefined or null reference".
Do u guys know any solution for this. ??
推荐答案
这篇关于Web浏览器控件window.external始终返回异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!