小弟最近在用DataList 分页的时候用到了LinkButton 用来删除其中的某一项,当点击按钮的时候 出现了下面的错误,望高手指教,不胜感谢!!! 这是HTML源码!
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['abc'];
if (!theForm) {
theForm = document.abc;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
说 theForm.__EVENTTARGET 为空或不是对象!
请高手指教!小弟万分感谢!!!!