jquery ui ダイアログの位置を設定するにはどうすればよいですか。フォームで [完了] をクリックすると、ダイアログの位置がページの上部になります。
ダイアログを呼び出す方法は次のとおりです。
<div id="dialog" style="display: none;">
<h1>Transaction successful!</h1>
<br />
<h3>Thank you.</h3>
</div>
ScriptManager.RegisterStartupScript(this, this.GetType(), "showmessage", "jQuery('#dialog').dialog({ dialogClass: 'no-close', title: 'Registration Successful', autoOpen: true, height: 300, width: 600, modal: true, draggable: true, resizable: false, buttons: { Ok: function () { window.location.replace('Login.aspx'); } } }); ", true);
助けてください...