Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. routes.MapRoute(
  2. "searchByName",
  3. "Movies/edit",
  4. new {Controller = "Movies", action = "edit"}
  5. );
  6.  
  7. public ActionResult index(int? id) {
  8. if(!id.HasValue)
  9. id = 2;
  10. return Content("id: " + id);
  11. }
  12. public ActionResult edit(int? id) {
  13. if (!id.HasValue)
  14. id = 1;
  15. return Content(String.Format("id = {0}", id));
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement