This is my View. How to use CheckboxFor():
@using eMCViewModels; @model eMCViewModels.RolesViewModel @{ ViewBag.Title = \"CreateNew\"; } C
I know it is pretty old but
In your model use DataAnotations Display Attribute
public class MyModel int ID{get; set;}; [Display(Name = "Last Name")] string LastName {get; set;}; end class