Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @model proj.ViewModels.AddMenu
  2. @using(Html.BeginForm())
  3. {
  4. @Html.AntiForgeryToken()
  5. @Html.TextBoxFor(x=>x.Menu.MenuName)
  6. @Html.TextBoxFor(x=>x.MenuItem.MenuItemName)
  7.  
  8. <input type="submit" />
  9. }
  10.  
  11. public class AddMenu
  12. {
  13.  
  14. public Menu Menu { get; set; }
  15. public MenuItem MenuItem { get; set; }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement