I receive the following error when trying to run my ASP.NET MVC application:
The request for \'Account\' has found the following matching controllers:
You can't have more than one controller named Account
in your application, even in different namespaces.
You have to have these controllers split up by Area
(a feature in ASP.NET MVC 2).
If you conduct a Find for AccountController
you'll find all controllers named Account
in your application; and move them off into different Areas
if you want both of them, or delete one.