2011-08-27 54 views
2

我希望顯示名稱包含一些html文本。DisplayAttribute中的Html標籤

例如像:

[Display(Name = "First Name <b class=\"red\">boldtext</b>)] 
public string FirstName { get; set; } 

但瀏覽器的屏幕上我看到:

First Name <b class="red">boldtext</b>

相反的:

boldtext

有什麼我可以做的,使其與顯示屬性一起工作?

基本上我想在所有必需的屬性之後顯示紅色*,或者如果這種方式無法工作,是否還有其他方法可以更好地實現?

回答

0

您可以創建自己的DisplayFor模板以使用任何您喜歡的模板渲染此對象。

1

顯示屬性屬於模型,所以它應該包含純文本數據,沒有任何格式。
如果你想格式添加到名稱,你可以這樣做
編寫擴展方法從顯示名稱獲得價值

public static MvcHtmlString DisplayNameFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, string templateName) 
    { 
     Expression expressionBody = expression.Body; 

     if (expressionBody is MemberExpression) 
     { 
      MemberExpression memberExpression = (MemberExpression)expressionBody; 
      string propertyName = memberExpression.Member.Name; 

      return html.DisplayFor(expression, templateName, new { Message = html.ViewData.ModelMetadata.Properties.Single(p => p.PropertyName == propertyName).Name}); 
     }    
    } 

查看:

@Html.DisplayNameFor(model => model.FirstName, "_NameTemplate") 

模板:_NameTemplate.cshtml

<span>@ViewData["Message"]</span> 

希望它對你有用