导航到新页面并显示警告框
Navigate to a new page and display an alert box
我正在使用 ASP.Net WebForm 开发应用程序。一旦用户单击一个按钮,应用程序将导航到一个新页面并提示一个对话框 "Welcome to JackiesGame"
但是,我可以导航到新页面,但不会显示警告对话框。
以下是我的示例代码
void cmdCancel_Click(object sender, EventArgs e)
{
HttpContext.Current.Response.Redirect(Globals.NavigateURL(TabId), true);
Page page2 = HttpContext.Current.CurrentHandler as Page;
ScriptManager.RegisterStartupScript(page2, page2.GetType(), "alertMessage", "alert('Insert Successfully')", true);
}
在页面 2 中添加以下内容。在页面加载时,它将仅在页面第一次加载脚本时注册。
protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostBack)
{
var reg = Request["Welcome"]
if(reg != null && reg.ToString() == "yes"){
ScriptManager.RegisterStartupScript(this, this.GetType(), "alertMessage", "alert('Insert Successfully')", true);
}
}
}
重定向后的所有代码都将被忽略,因为它必须重定向到新页面。所以代码永远不会被触发。
编辑
添加了一个进一步查看的示例
void cmdCancel_Click(object sender, EventArgs e)
{
string myUrl = Globals.NavigateURL(TabId)+"?Welcome=yes";
HttpContext.Current.Response.Redirect(myUrl, true);
}
我正在使用 ASP.Net WebForm 开发应用程序。一旦用户单击一个按钮,应用程序将导航到一个新页面并提示一个对话框 "Welcome to JackiesGame"
但是,我可以导航到新页面,但不会显示警告对话框。
以下是我的示例代码
void cmdCancel_Click(object sender, EventArgs e)
{
HttpContext.Current.Response.Redirect(Globals.NavigateURL(TabId), true);
Page page2 = HttpContext.Current.CurrentHandler as Page;
ScriptManager.RegisterStartupScript(page2, page2.GetType(), "alertMessage", "alert('Insert Successfully')", true);
}
在页面 2 中添加以下内容。在页面加载时,它将仅在页面第一次加载脚本时注册。
protected void Page_Load(object sender, EventArgs e)
{
if(!Page.IsPostBack)
{
var reg = Request["Welcome"]
if(reg != null && reg.ToString() == "yes"){
ScriptManager.RegisterStartupScript(this, this.GetType(), "alertMessage", "alert('Insert Successfully')", true);
}
}
}
重定向后的所有代码都将被忽略,因为它必须重定向到新页面。所以代码永远不会被触发。
编辑 添加了一个进一步查看的示例
void cmdCancel_Click(object sender, EventArgs e)
{
string myUrl = Globals.NavigateURL(TabId)+"?Welcome=yes";
HttpContext.Current.Response.Redirect(myUrl, true);
}