JavaScript アラート ステートメントを使用してメッセージ ダイアログ ボックスを作成しています。そのダイアログ ボックスには 1 つのボタンがあります。そのボタンをクリックして、現在のウィンドウを閉じたいです。
JavaScript
<script language="javascript" >
function Confirmation() {
var win = window.open('', '_self');
if (confirm("Are you sure you want to close the form?") == true)
win.close();
else
return false
}
</script>
HTML
<td class="style5">
<asp:ImageButton ID="close" runat ="server" ImageUrl ="image/button_blue_close.png" OnClientClick="return Confirmation()"
Height="16px" Width="21px" ImageAlign="Right"/>
</td>
私のコードは、画像ボタンをクリックしたときにのみウィンドウを閉じます。だけどダイアログボックスのボタンクリックでウィンドウを閉じたい
my code in vb.net
-----------------
ClientScript.RegisterStartupScript(Me.GetType(), "message", "alert('Please Raise the ticket for particular event');", True)