I have a problem navigating between different controllers views from HTML
Like for example i have two controllers (User and Transaction)
and in my HTML there is a main menu where it has all the main navigations.
so if i wanna navigate to the User list my view would be "User/List_Users"
and if i am inside the Transaction view
(......com/Transaction)
if i clicked on User List it will navigate to
(......com/Transaction/User/List_Users)
instead of going to
(......com/User/List_Users)
So i tried using The Html Action like like
<li>@Html.ActionLink("User List","User/List_Users")</li>
but didn't do any good :(