I have successfully integrated an MVC area into my web application project.
I would like to create a menu item from one of my MVC Views that links back to the web application Default.aspx. A "Home" Menu if you will.
Per: HTML.ActionLink vs Url.Action in ASP.NET Razor
I cannot actually use either the HTML.ActionLink nor the URL.Action to do anything but access controllers within the MVC project.
What would be the best way to create this menu heading?
Where I need the menu item:
Root>Areas>Folder>Views>Folder>Layout.vbhtml
To point to: Root>Default.aspx
It's quite possible I'm overlooking something quite easy, but as you can tell from my project mess, I'm relatively new to MVC unfortunately.
Thanks in Advance!