我正在使用启用了autopostback的下拉列表。当我更改updatepanel上的值时,它会抛出javascript错误Microsoft JScript runtime error: Member not found
。我正在使用母版页。
错误位置:
“theForm.submit();”
出现错误<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['ctl01'];
if (!theForm) {
theForm = document.ctl01;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
Asp.Net/HTML:
<asp:ScriptManager ID="manager" runat="server" ></asp:ScriptManager>
<asp:UpdatePanel ID="platformOutputTypes" runat="server" UpdateMode="Always" >
<ContentTemplate >
<p>
<label>Platform</label>
<asp:DropDownList ID="platform" AutoPostBack="true" runat="server" onselectedindexchanged="PlatformSelectedIndexChanged" ></asp:DropDownList>
</p>
<asp:CheckBoxList TextAlign="Left" ID="reportOutputTypes" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
我也在页面上使用jQuery。
答案 0 :(得分:4)
找到适合我的链接......
http://www.velocityreviews.com/forums/t110670-__dopostback-fails-on-web-form-submit-net-2-0-a.html
一种简单的解决方案。基本上,在我的情况下,检查内容页面和主页面的“提交”的“名称”属性,找到一个简单的html按钮,更改名称和瞧...工作
HTH
戴夫
答案 1 :(得分:1)
当我使用argc + 1
时ID设置为&#34;提交&#34;我通常不会给提交按钮提供&#34;提交&#34;的ID,但必须在急速中这样做。当我给提交按钮时,ID为&#34; Search&#34;问题消失了。