当使用Response.Write()函数将字符串输出到html页面时候,因为html的默认实体的问题,有时候输出并不是预期的那样。比如:
Response.Write("hi tom"); //字符串中间有六个空格
在web页面的显示却是: hi tom //html自动将连续的空格合并为一个
要达到预期的效果,必须象下面这样:
Response.Write("hi tom");
这样显得很繁琐,你可以写一个函数来自动帮你将" "换成; 。代码如下:
------------------------------------------------------------------
public string FormatString(string str)
{
str=str.Replace(" "," ");
str=str.Replace("","<");
str=str.Replace("",">");
str=str...[ 查看全文 ]