我有一些问题。
我的页面在这个javascript代码(第二行)中失败了:
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}它告诉我:
'theForm.onsubmit‘是null或非对象。
有什么想法吗?
谢谢!C
发布于 2011-01-19 16:46:46
你能确保你的标记(html)表单标签有runat="server“吗?
https://stackoverflow.com/questions/4737923
复制相似问题