<script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script>
判斷是否為js觸發的回發 if (Request[ " __EVENTARGUMENT " ] == " jsPostback " ) { //此處呼叫相關後台方法 // … }
string strButton = <input type =」button」 ID=”button1”>,然後輸出到頁面,但是如果我們需要這個控制項來執行一些伺服器的功能,就比較困難了.這裡我們就可以用過例來借用__doPostBack
function ExcuteOnServer() { //第一個參數是你希望提交到伺服器的控制項的ID號,第二個參數是事件參數 __doPostBack('LinkButtonID',''); }
<script language="javascript"> <!-- function __doPostBack(eventTarget, eventArgument) { var theform; if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) { theform = document.forms["Form1"]; } else { theform = document.Form1; } theform.__EVENTTARGET.value = eventTarget.split("$").join(":"); theform.__EVENTARGUMENT.value = eventArgument; theform.submit(); } // --> </script> <input type="hidden" value="" /> <input type="hidden" value="" />