1. __doPostBack是.net自动生成的(当页面中有LinkButton、DropDownList(AutoPostBack)等时;Button和ImageButton不会生成它,也不会调用它),用于提交页面。
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> ——存储引起回发的控件的ID
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> ——存储参数