alert('****');");后CSS界面发生变化的解决方法 (经验证)" /> alert('****');");后CSS界面发生变化的解决方法 (经验证) - 秒客网" />

ASP.NET中使用 Response.Write("");后CSS界面发生变化的解决方法 (经验证)

时间:2022-10-06 02:26:21

在后台使用Response.Write("<script>alert('Hello World');</script>);弹出alert窗口后发现网页的界面和原来CSS设置的不一样了。只要使用Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('Hello World');</script>"); 代替Response.Write("<script>alert('Hello World');</script>);界面就不会变化了。