摘要:
当使用Response.Write()函数将字符串输出到html页面时候,因为html的默认实体的问题,有时候输出并不是预期的那样。比如:Response.Write("hi tom"); //字符串中间有六个空格在web页面的显示却是: hi tom //html自动将连续的空格合并为一个 要达到预期的效果,必须象下面这样:Response.Write("hi tom");... 阅读全文
posted @ 2007-01-20 20:13
zqf620
阅读(1085)
评论(1)
推荐(0)