C#中写入html

namespace HTMLHelpersDemo.Helpers {  

   public static class MyHTMLHelpers    

 {      

    public static IHtmlString LabelWithMark(string content)

          {               string htmlString = String.Format("<label><mark>{0}</mark></label>", content);

          return new HtmlString(htmlString);  

      }

    }

}

posted @ 2015-03-04 15:12  知行一体2  阅读(1073)  评论(0)    收藏  举报