ASPNET弹出消息框确认框的代码收集?
建议你使用ScriptManger这个类方法,在页面刷新后弹出提示框。具体用法是:
不用Ajax:Page.ClientScript.RegisterStartupScript(Page.GetType(), "", "<script>window.open('default2.aspx')</script>")
使用了Ajax:ScriptManager.RegisterStartupScript(this.Button1, this.GetType(), "alertScript", "window.open('default2.aspx');", true);