1. 程式人生 > >JavaScript 頁面跳轉後臺的幾種方法

JavaScript 頁面跳轉後臺的幾種方法

 一:MsgBox.ShowAndRedirect(this, "儲存成功!", "ReceiveAlert_Add.aspx");

該頁面跳轉子頁面的時候自動重新整理該頁面的內容不會儲存儲存的頁面內容

二:ScriptManager.RegisterClientScriptBlock(this.Page, typeof(Page), null, "alert('儲存成功!');windows.location.href='ReceiveAlert_Add.aspx'", true);

該頁面可以任意跳轉頁面,但是跳轉到本頁面的時候,該頁面內容回自動儲存到控制元件中

三:Response.Redirect("ReceiveAlert_Add.aspx");

可以跳轉到任意頁面,但是遇到alert('儲存成功!');不會有任何反應。

 Response.Redirect("< script language=javascript>alert('儲存成功!')< /script>");
 Response.Redirect("< script language=javascript>windows.location.href='ReceiveAlert_Add.aspx'< /script>");