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