Why should I use LabelFor in MVC?
Well, if you’ve decorated your models with the DisplayNameAttribute like this: [DisplayName(“First Name”)] string FirstName { get; set; } Then you only specify what the text of the label would be in one place. You might have to create a similar label in number of places, and if you ever needed to change the label’s … Read more