I've got menu in my ASP MVC project, and can when I use
<li><%= Html.ActionLink("My", "My")%></li>
it redirects me to .../Home/My and if I got
<li><%= Html.ActionLink("My", "My", "ZZZ")%></li>
it redirects me to .../ZZZ/My
the problem is I've got some pages out of MVC , with simple Inherits and they are in the root so I need to got to /My.aspx
How can I redirect to /My.aspx in my MVC menu ?