1. ホーム
  2. ASP.NET

ajaxでポップアップアラートボックス

2022-02-16 11:45:23

取得元:http://blog.csdn.net/ptyzhu/article/details/7893625

プロンプトボックスをポップアップさせる基本的な方法をいくつか紹介します。







Response.Write("<script>alert('Success!') ;window.location.href='task.aspx';</script>") を実行。







Page.ClientScript.RegisterStartupScript(this.GetType(), "test", "<script>alert('Success!') ;</script>") を実行することで登録できます。





Page.RegisterStartupScript("test", "<script>alert('Success!') ;</script>") を実行します。







上記はajaxでは動作しないので、解決方法は以下の通りです。







ScriptManager.RegisterStartupScript(this,this.GetType(),"test","alert('Success!') ;",true)を実行します。







ps: 最後のパラメータのbool値は、前のパラメータのスクリプトに <script></script> タグを追加するかどうかを示します。