Asp.Net中文本换行
private String HtmlCode(string str)
{
if (str!= null)
{
str= str.Replace("\r", "<br>");
str= str.Replace(" ", " ");
return str;
}
else
{
return "";
}
}
{
if (str!= null)
{
str= str.Replace("\r", "<br>");
str= str.Replace(" ", " ");
return str;
}
else
{
return "";
}
}

