色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

ASPNET彈出消息框確認框的代碼收集

錢淋西2年前13瀏覽0評論

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