我在我的aspx頁面中使用了此腳本管理器。asp.net中的aspx和.cs頁面上的警報腳本和response.redirect
ScriptManager.RegisterStartupScript(this, this.GetType(), "Redit", "alert('Registered Successfully !!'); window.location='" + Request.ApplicationPath + "/admin/CreateSubAdmin.aspx';", true);
當我在本地服務器使用它比它正常工作。和URL看起來像:主機網址:xyz.aspx /管理/ CreateSubAdmin.aspx
下劃線部分是在管理部分。
但在服務器上,這是不正確的工作。它看起來像:/admin/CreateSubAdmin.aspx。
但我希望它顯示像www.xyz.com/admin/CreateSubAdmin.aspx。
所以我寫錯了。 PLZ幫助我。
在此先感謝..