ScriptManager.RegisterStartupScript(UpdatePanel2, this.GetType(), "click", "alert('This Email address is already registered...');window.location.href ='test.aspx'", true);
上記のコードを使用することで、アラート ボックスを表示し、その後 test.aspx ページにリダイレクトできます。
しかし、次のようなアドレスでクエリ文字列を渡す必要がある場合に問題が発生します。
ScriptManager.RegisterStartupScript(UpdatePanel2, this.GetType(), "click", "alert('This Email address is already registered...');window.location.href ='test.aspx?WidgetID='" + Request.QueryString["WidgetID"] + "'&lan='" + readCookie() + "'&seeHome=true'", true);
前もって感謝します