私が欲しいのは、ボタンをクリックしている間、コードがモーダルボックスを表示し、コードビハインドが残りを処理し続けることです。
ボタン:
<asp:Button ID="Button1" runat="server" Text="Start"></asp:Button>
次に、コード ビハインドでonclick
、Button1 に追加します。
Generate_Button.Attributes.Add("onclick", "shopModalPopup(); return false;")
そして、Button1.click のイベント ハンドラーがあります。
Protected Sub Button1_Click(sender As Object, e As System.EventArgs) Handles Button1.Click
'The process goes here
End Sub
JavaScript とモーダル ボックス:
<script>
var grid_modal_options = {
height: 200,
width: 500,
resizable: false,
modal: true
};
function shopModalPopup() {
$("#dialog-form").dialog(grid_modal_options);
$("#dialog-form").parent().appendTo('form:first');
}
</script>
<div id="dialog-form" title="Processing Request" style="display: none;">
<div class="in">
<center><h2> Please wait while we're processing your request. </h2></center>
</div>
</div>
上記のコードはモーダル ボックスを表示しますが、ボタン クリック ハンドラーで次のコードを処理しません。どうやってやるの?どうもありがとうございました。