JavaScript运行时错误:找不到成员

时间:2015-04-22 14:34:48

标签: javascript asp.net login

我第一次遇到这个错误而且从来没有遇到过这个错误

我有asp.net登录控件,当按下它时,我收到一个错误说 JavaScript运行时错误:找不到成员。

在aspx页面中,调试器突出显示了部分

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['Form1'];
if (!theForm) {
    theForm = document.Form1;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();  << this section in yellow highlight  
    }
}
//]]>
</script>

所以,为什么我收到这个错误
谢谢

1 个答案:

答案 0 :(得分:0)

我发现了错误,因为在default.aspx页面中我还有一个名称提交的html按钮,这个按钮会导致登录控件和提交按钮之间发生冲突。