I'm building a webshop in MVC 3. It uses the default membership provider for the checkout so users should first register/login before they can make the purchase. This works fine. Now i'm building an admin area to manage all the products, categories and all dropdown values used on the forms. For this the admin needs to log in. Preferably i want to use the same membership provider. What is best practice for this? I tried to put a separate AccountController and views in the Admin area but when i browse to .../admin it will route me to the log on page of the web shop instead of the Admin area. Is it ok to use only 1 AccountController in the root of the project and then evaluate the RouteData and return the correct Logon view from the Admin area Views? or is this 'not-done'.
I would like to do it the best and cleanest way.
Thanx