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);
}
}
}
浙公网安备 33010602011771号