I am working on an application using .Net MVC3. I have it all working OK using Windows authentication and Active Directory for the logins. It's an intranet based application.
The problem is we have a login which is used by multiple people in one department.
I would like to be able to have that account redirected to a login page so that I can prompt for a different username and password but can't seem to find a way to make that happen with Windows authentication. If there is I just can't see where in MVC to make that take place.
I've tried using Forms authentication with AD instead but we don't want everyone to have to login, just that one account. It's a business decision that I don't see changing unfortunately!
Using authorize attributes on the controllers isn't suitable in this case either as all the controllers can be accessed by any user or group.
The suggestions I've seen seem to revolve around mixing Windows and Forms authentication for internal and external accounts but all our accounts are in AD in this case.
Is there any way to pull this off?
Mark