一、ASP.NET后台页面跳转
首先看下列代码:
Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>alert('数据添加成功!');</script>");
此代码默认是弹出提示框,并不刷新界面,那在此基础上可以设置成弹框并出现页面的跳转
//ASP.NET后台页面跳转
Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>if(confirm('保存成功!是否继续添加?'))
{location.href='ProductonAdd.aspx'}else{location.href='ProductonList.aspx'}</script>");
//后台弹出确定框
ClientScript.RegisterStartupScript(GetType(), "message", "<script>alert('请正确输入!');</script>");
//ASP.NET后台页面跳转
Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>alert('数据添加成功!');
{location.href='ProductonList.aspx'}</script>");
或
Page.ClientScript.RegisterStartupScript(typeof(string), "", "<script>
window.location.href='AdminMain.aspx';</script>");
//后台弹出文本框
ScriptManager.RegisterStartupScript(Page, typeof(string), "popUp", "window.open('rptView.aspx',
'打印预览','toolbar=no,location=no,scrollbars=yes,top=200px,left=200px,width=904px,height=650px')", true);
如果在上述的基础上出现了弹框并刷新了界面,问题可能在于你在弹框后还执行了对界面窗体的修改或者执行了与服务器的交互需要更新界面,这时会出现弹框后页面也出现了刷新的现象。本身Page.ClientScript.RegisterStartupScript(Page.GetType()…并没有刷新页面的含义。
二、刷新界面后,我需要将原本默认不显示的控件显示出来。需求源于我点击修改密码,出现修改密码的框,如果输错密码弹框,刷新,我需要修改密码的框显示而不是隐藏。
代码:
前台给DIV个ID
<div runat="server" id="pwd"></div>
runat="server" 很重要啊
后台要控制的地方
this.pwd.Style.Add("display", "none");//隐藏
this.pwd.Style.Add("display", "block");//显示