Please help me to do this way
I have 2 MVC3 apps with form authentication. The URL like this
http://localhost/app1
http://localhost/app2
When I signed in/out to one of the app with same user information, another app has the same cookies and login session. But I don’t want it that way. I want to separate login info among 2 apps.
Please help.
Many thanks
Please help me to do this way I have 2 MVC3 apps with form
Share
In app1 edit your web.config. Give the authentication tag a unique “name” attribute.
…and do the same in app2.
MSDN has some related information about sharing tickets across applications [link].