本文介绍了Microsoft JScript运行时错误:'document.all.TextBox2'为null或不是对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





i face

   Microsoft JScript运行时错误:'document.all.TextBox2'在以下脚本中为null或不是对象 





 < script    语言  =  javascript  >  
函数showDirectory(){
document.all.TextBox2。 value = window.showModalDialog( browseDirectory.aspx' jain' dialogHeight:560px; dialogWidth:360px; edge:Raised; center:是;帮助:是;可调整大小:是;状态:否;);

return false ;
}

< / script >




这种形式的
我使用脚本管理器,因为该页面必须我使用infragistic控制。





如何解决这个问题..



任何人帮助我。

解决方案

hi,

i face

"Microsoft JScript runtime error: 'document.all.TextBox2' is null or not an object"

in following script

<script language="javascript">
     function showDirectory() {
         document.all.TextBox2.value = window.showModalDialog("browseDirectory.aspx", 'jain', "dialogHeight: 560px; dialogWidth: 360px; edge: Raised; center: Yes; help: Yes; resizable: Yes; status: No;");

         return false;
     }
    
    </script>



in this form i use script manager, that is must for that page because of i use infragistic control.


how to solve this problem..

anybody help to me.

解决方案


这篇关于Microsoft JScript运行时错误:'document.all.TextBox2'为null或不是对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 22:02