aspx ページがあります。ページにはJavaScript関数があります
window.onbeforeunload = confirmExit;
function confirmExit()
{
return "You have attempted to leave this page. If you have made any changes to the fields without clicking the Submit button, your changes will be lost. Are you sure you want to exit this page?";
}
これは、ユーザーがページを離れたときに実行されます。ただし、部分ページのポストバックでも実行されます。これが部分的なページのポストバックであるかどうかを確認して無視するにはどうすればよいですか?