Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @model RegistrationModel
  2. @using (Html.BeginForm(FormMethod.Post, new { @class = "form-horizontal" }))
  3. {
  4. @Html.EditorFor(c => c.PersonalDetail)
  5. }
  6.  
  7. public class RegistrationModel
  8. {
  9. public PersonalDetailModel PersonalDetail { get; set; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement