を行うページ A がありますResponse.Redirect("~/dummyPage.aspx");
。リダイレクトされたページ (dummypage.aspx) には、要求の最後に呼び出されるスクリプトを登録するこのコードがあります。
public void doStuff(bool isAjaxRequest)
{
var javascript = "alert('hello')";
if (isAjaxRequest)
{
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), this.ID + "_UpdateBreadCss", javascript, true);
}
else
{
this.Page.ClientScript.RegisterStartupScript(this.GetType(), this.ID + "_UpdateBreadCss", javascript, true);
}
}
これは私が行うときは機能しませんResponse.Redirect()
が、dummypage.aspx にいる場合は正常に機能します。
私は何が欠けていますか?