Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @{
  2. Html.RenderAction("Index", "Logo");
  3. Html.RenderAction("Index", "MainMenu");
  4. }
  5.  
  6. [HttpPost]
  7. public ActionResult Index(ManageAdministratorModel manageAdministratorModel)
  8. {
  9. // I save some of the fields to the database here.
  10. return View(manageAdministratorModel);
  11. }
  12.  
  13. Html.RenderAction("Index", "Logo");
  14.  
  15. [HttpGet]
  16. public ActionResult Index()
  17. {
  18. }
  19.  
  20. public ActionResult Index()
  21. {
  22. }
  23.  
  24. return View(manageAdministratorModel);
  25.  
  26. return PartialView(manageAdministratorModel);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement