tags:

views:

44

answers:

1

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 ?

A: 

The ActionLink method looks up the MVC routing information to generate the URL, but by default WebForm pages are not set up with routing, they are file based, so I don't think you can use the ActionLink method for this purpose.

JonoW
yes ... looking like so ...
nCdy