In razor engine I have used LabelFor helper method to display the name
LabelFor
But the display name is seems to be not good to display. so i need to change my displ
You can change the labels' text by adorning the property with the DisplayName attribute.
DisplayName
[DisplayName("Someking Status")] public string SomekingStatus { get; set; }
Or, you could write the raw HTML explicitly:
Someking Status