public static MvcHtmlString LabelFor <TModel, TValue>(this DnnHelper <TModel> dnnHelper, Expression <Func <TModel, TValue> > expression, string labelText, string helpText, object htmlAttributes)
 {
     return(LabelFor(dnnHelper, expression, labelText, helpText, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
 public static MvcHtmlString LabelFor <TModel, TValue>(this DnnHelper <TModel> dnnHelper, Expression <Func <TModel, TValue> > expression, string labelText, string helpText)
 {
     return(LabelFor(dnnHelper, expression, labelText, helpText, null));
 }
 public static MvcHtmlString LabelFor <TModel, TValue>(this DnnHelper <TModel> dnnHelper, Expression <Func <TModel, TValue> > expression, string helpText, IDictionary <string, object> htmlAttributes)
 {
     return(LabelFor(dnnHelper, expression, null, helpText, htmlAttributes));
 }
 public static MvcHtmlString LabelFor <TModel, TValue>(this DnnHelper <TModel> dnnHelper, Expression <Func <TModel, TValue> > expression, object htmlAttributes)
 {
     return(LabelFor(dnnHelper, expression, null, null, htmlAttributes));
 }
 public static MvcHtmlString Label <TModel>(this DnnHelper <TModel> dnnHelper, string expression, string labelText, string helpText, object htmlAttributes)
 {
     return(Label(dnnHelper, expression, labelText, helpText, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
 public static MvcHtmlString Label <TModel>(this DnnHelper <TModel> dnnHelper, string expression, string labelText, string helpText)
 {
     return(Label(dnnHelper, expression, labelText, helpText, null));
 }