Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. public class LeadSortModel
  2. {
  3. public string Contact_Name { get; set; }
  4. public string Contact_Address { get; set; }
  5.  
  6. @Html.LabelFor(m=>m.Contact_Name)
  7. @Html.LabelFor(m=>m.Contact_Address)
  8.  
  9. public class LeadSortModel
  10. {
  11. [DisplayName("Contact Name")]
  12. public string Contact_Name { get; set; }
  13. [DisplayName("Contact Address")]
  14. public string Contact_Address { get; set;
  15.  
  16. @Html.LabelFor(m=>m.Contact_Name)
  17.  
  18. <label for="Contact_Name">Contact Name</label>
  19.  
  20. public class LeadSortModel
  21. {
  22. [DisplayName("Contact Name")]
  23. public string Contact_Name { get; set; }
  24. [DisplayName("Contact Address")]
  25. public string Contact_Address { get; set; }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement