The link for logging in looks like this:

<%= Html.ActionLink("Log On", "LogOn", "Account") %>

which yields the following link in the browser:

http://localhost:2300/Account/LogOn

However, if I switch to an Area, such as Content, the Login link now looks like this:

http://localhost:2300/Content/Account/LogOn

...which fails of course, because there is no AccountController in the Content Area.

How do I change my call to ActionLink so that it yields http://localhost:2300/Account/LogOn ?

link|improve this question

Have you tried RouteLink instead? – Gonzalo Dec 1 '09 at 23:55
That's a good idea. Let me check it out. – Robert Harvey Dec 1 '09 at 23:59
When you say "switch to an Area", do you mean you navigate to an area and thus ActionLink creates a link assuming its for Area "Content"? – Omar Dec 2 '09 at 0:05
Yes, exactly... – Robert Harvey Dec 2 '09 at 0:06
feedback

1 Answer

up vote 1 down vote accepted

Try RouteLink instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.