.NET Framework 側で RegisterClientScriptBlock メソッドを呼び出してスクリプトを登録します。RegisterClientScriptBlock メソッドの第1引数、第2引数の情報の組み合わせでスクリプトを一意に識別しています。重複する組み合わせのスクリプトは登録できないようです。
以下の例では、ボタンクリックのタイミングで、Dialog.aspx というダイアログ画面を表示しています。
protected void Button1_Click(object
sender, EventArgs e)
{
ClientScript.RegisterClientScriptBlock(
// クライアントスクリプトのタイプ
this.GetType(),
// クライアントスクリプトのキー
"modal1",
// スクリプト
"<script
language='javascript'>window.showModalDialog('Dialog.aspx');</script>"
);
}
ClientScriptManager.RegisterClientScriptBlock メソッド (Type, String, String)
window.showModalDialog
showModalDialog method
0 件のコメント:
コメントを投稿