@{ ViewBag.Title = "Index"; Layout = "/Views/Shared/_Layout.cshtml"; }
Helper | Output |
---|---|
Url.Content("~/Content/Site.css") | @Url.Content("~/Content/Site.css") |
Html.ActionLink("My Link", "Index", "Home") | @Html.ActionLink("My Link", "Index", "Home") |
Url.Action("GetPeople", "People") | @Url.Action("GetPeople", "People") |
Url.RouteUrl(new { controller = "People", action = "Getpeople" }) | @Url.RouteUrl(new { controller = "People", action = "Getpeople" }) |
Html.RouteLink("My Link", new { Controller = "Poeple", action = "GetPeople" }) | @Html.RouteLink("My Link", new { Controller = "Poeple", action = "GetPeople" }) |
Html.RouteLink("My Link", "FormRoute", new { controller = "People", action = "GetPeople" }) | @Html.RouteLink("My Link", "FormRoute", new { controller = "People", action = "GetPeople" }) |