So I have this action link
@Html.ActionLink("Logout","LogoutConfirmation","Login")
which takes me to a url like:
mysite.com/myaccount/Login/LogoutConfirmation
however the folder isnt located in "myaccount" its just that is my current location on this webpage. How can I make the action link to take me to:
mysite.com/Login/LogoutConfirmation
instead of the folder "myaccount".