Guest User

Untitled

a guest
Feb 16th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. [RoutePrefix("category")] // kok rootumuzu belirtir
  2. [Route("{action=Index}")] // default olarak ele alınacak Actionu belirtir.
  3. public class HomeController : Controller
  4. {
  5. // örnek: /category
  6. public ActionResult Index()
  7. {
  8. return View();
  9. }
  10. // örnek: /category/detail
  11. public ActionResult Detail()
  12. {
  13. string title = "Detay Sayfası";
  14. ViewBag.Title = title;
  15. return View();
  16. }
  17. }
Add Comment
Please, Sign In to add comment