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);
}
}
}