Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ModalPopUpExtender でいくつかの検証を実行したいのですが、ModalPopUpExtender で検証エラーが発生した場合でも、[OK] ボタンをクリックするとポストバックが実行されます。
ModalPopUpExtender に検証エラーがある場合、送信ボタンがポストバックを実行しないようにする方法を教えてください。
return false;関数の最後に書く必要があります。
return false;
関数があるとします
function validate() { //your statements return false;//write this to stop postback. }
また、ボタン クライアントのクリック時に関数呼び出しの前に return を配置します。なので
OnClientClick="return validate()"