在页面上输出如下语句时:
Response.Write("<script></script>");
如果没有刷新或重定向会使页面样式变乱丢失.
原因:使用Response.Write("<script></script>");会把脚输出到页面的第一行,这样就破坏了文档的模型,它的解析就会出现问题。下面的这句必须在页面的第一行才可以。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
解决方法一:
Page.ClientScript.RegisterStartupScript( );
eg:
Page.ClientScript.RegisterStartupScript(typeof(string),"aa","<script>alert('修改成功!');</script>" );
解决方法二:
可以在BUTTON事件最后调用这个方法进行页面重定向: Response.Write("<script>window.location.href=window.location.href;<script>");
eg:Response.Write("<script>alert('修改成功!');location.href='changepassword.aspx';</script>");
这里是刷新一下页面.
解决方法三:
可以在页面上拖一个Label控件.放在页面靠上些.
然后
Lable1.Text="<script></script>";