I have asp dot net mvc project. I create area in MVC project name area as "Admin". in the admin area i have shared view in which i have following link.
Link 1. the register view is save in root folder not in admin area so how can i give path of the root so user can access register view on root.
<li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>
link 2 in the shared file if user is login so logout link appears on click of logout i want to redirect user on login page which is on root folder how to give that path
using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new {id = "logoutForm", @class = "navbar-right" }))