ホームページ > 記事 > ウェブフロントエンド > Asp.Net アラートでプロンプト情報をポップアップ表示するためのいくつかの方法の概要_JavaScript スキル
1.ClientScript.RegisterStartupScript(GetType(),"message","<script>alert('最初の方法、白い画面はありません!');</script>");
2.HttpContext.Current.Response.Write("<script>alert('2 番目の方法、白い画面があります!')</script>");
3.public static void Show(System.Web.UI.Page page, string msg)
{
page.ClientScript.RegisterStartupScript(page.GetType(), "message", "<スクリプト言語='javascript' defer>alert('" msg.ToString() "');");
}
Show(this, "3 番目の方法、白い画面も変形もありません。 ");
4.Response.Write("<script>alert('4 番目の方法、白い画面があります!')</script>");
5.window.showModalDialog('XXX.aspx', '', 'dialogWidth:429px;dialogHeight:200px;location:no,menubar:no,toolbar:no,status:no');
6.Page.clientscript.registerstartupscript(this.gettype(), "", "<script>window.open('../issue/issueallcomment.aspx');</script>");
それは解決できます。
7.
次のように ajax コンポーネントの関数を使用します。
System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "opennewwindow", "alert('Pop-upボックスの内容!' );"、true);
8.
ページ本体の最後の行にコントロールを配置し、コード ページでこのコントロールに次のように値を割り当てます。
label.Text="<script>alert('ポップアップ ボックスの内容!); </script> ";