首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

弹出"保存成功"后转向另外一个网页如何做

2012-04-12 
弹出保存成功后转向另外一个网页怎么做?C# codeprotected void btnSave_Click(object sender, EventArgs

弹出"保存成功"后转向另外一个网页怎么做?

C# code
protected void btnSave_Click(object sender, EventArgs e){    string script = @"<script language=javascript type=text/javascript>alert('保存成功')</script>"    Response.Redirect("~/Modify.aspx",false);}


这样做直接转向Modify.aspx页面,并没有弹出"保存成功"对话框。
请问如何实现弹出"保存成功"对话框后再转向Modify.aspx页面(这两个操作要在一个事件中完成。)

[解决办法]
C# code
protected void btnSave_Click(object sender, EventArgs e) {    this.ClientScript.RegisterStartupScript(typeof(string),"success","alert('保存成功');window.location.href='Modify.aspx';",true);}
[解决办法]
探讨
C# code
protected void btnSave_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(typeof(string),"success","alert('保存成功');window.location.href='Modify.aspx';",true);
}

[解决办法]
探讨
C# code
protected void btnSave_Click(object sender, EventArgs e)
{
this.ClientScript.RegisterStartupScript(typeof(string),"success","alert('保存成功');window.location.href='Modify.aspx';",true);
}

热点排行