Asp.Net文本换行
程序员文章站
2022-06-12 20:32:47
private string htmlcode(string tstring) {  ...
private string htmlcode(string tstring)
{
if (tstring != null)
{
tstring = tstring.replace("\r", "<br>");
tstring = tstring.replace(" ", " ");
return tstring;
}
else
{
return tstring="无内容";
}
}
使用范例:
this.contenttxt.text = htmlcode(newstab.rows[0]["contenttxt"].tostring());
注:.contenttxt为label标签控件;newstab.rows[0]["contenttxt"].tostring()为读取数据库表中的记录集。
{
if (tstring != null)
{
tstring = tstring.replace("\r", "<br>");
tstring = tstring.replace(" ", " ");
return tstring;
}
else
{
return tstring="无内容";
}
}
使用范例:
this.contenttxt.text = htmlcode(newstab.rows[0]["contenttxt"].tostring());
注:.contenttxt为label标签控件;newstab.rows[0]["contenttxt"].tostring()为读取数据库表中的记录集。
上一篇: C# 生成高质量缩略图程序—终极算法