I have two controllers called AccountController . One of them, let's call it Controller A , is located in an Area called Admin , and the other one allows us to call it Controller B , is not in any Area (I think it means it is Area by default). Controller B has an action method called Login . I have an action method in Controller A that has this line
return RedirectToAction("LogIn", "Account");
The problem is that I get 404 when this line is executed, because an attempt is being made to redirect to a nonexistent action in Controller A I want to call the action method in Controller B Is it possible?
Sachin Kainth May 28 '12 at 1:11 pm 2012-05-28 13:11
source share