淘先锋技术网

首页 1 2 3 4 5 6 7

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);