欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Asp.Net文本换行

程序员文章站 2023-11-10 15:02:28
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()为读取数据库表中的记录集。