I am looking to create a view generically based on my class in a column-wise table layout.
the model is:
public class Client
{
[DisplayName("Client Account")]
public int ClientID { get; set; }
[DisplayName("Client Name")]
public string Name { get; set; }
public string Address { get; set; }
[DisplayName("Home Phone")]
public string PhoneH { get; set; }
[DisplayName("Emergency Phone")]
public string PhoneE { get; set; }
[DisplayName("Alternate Phone")]
public string PhoneA { get; set; }
public string Directions { get; set; }
[DisplayName("Comments")]
public string SComment { get; set; }
}
in the form of
Field 1 value1
Field 2 value2
Field 3 value3
Is there a way to do it so that the first column uses one style and the second column uses another style?
i am trying to do this generically based on the properties of the class.
I am using MVC4/razor/VS2012
Many thanks!