我希望在浏览器中看到图标,但是剃刀会打印图标字符串
This is a test
This is new text
<i class=fa fa-mars-double></i> MyReportName
在我看来,我简单地称其为
public string RaporAdi { get {
if (RaporTuruEnumId == RaporTuruEnum.EvlilikRaporu)
return string.Format("{0} {1}", "<i class='fa fa-mars-double'></i>", RaporTuruEnumId.DisplayName());
else if (RaporTuruEnumId == RaporTuruEnum.IstirahatRaporu)
return string.Format("{0} {1}", "<i class='fas fa-bed'></i>", RaporTuruEnumId.DisplayName());
return RaporTuruEnumId.DisplayName();
} }
public RaporTuruEnum RaporTuruEnumId { get; set; }