skip to Main Content

ASP.Net Core | Issue with Html.ActionLink

I'm new to ASP.net core and I was trying to write a redirect action using @Html.ActionLink Here is my code : @page @model IndexModel @{ ViewData["Title"] = "Home page"; } <div class="text-center"> <h2>Main Navigation</h2> <ul> <li>@Html.ActionLink("PRIVACY PAGE", "Privacy", "Privacy")</li> </ul>…

VIEW QUESTION
Back To Top
Search