TextBox保存的文本在Label中显示

private string FormatString(string strValue)
{
      strValue = strValue.Replace(" ", " ");//处理空格  
      strValue = strValue.Replace("<", "&lt;");//处理小于号  
      strValue = strValue.Replace(">", "&gt;");//处理大于号
      strValue = strValue.Replace("\n", "<br/>");//处理换行
      return strValue;
}
posted on 2007-08-25 11:35  一路前行  阅读(352)  评论(0编辑  收藏  举报