tags:

views:

36

answers:

1

On my webserver i am hosting 2 applications and both applications use the same .aspxauth cookie. which is causing a problem. I dont want them to use same.aspxauth cookie. How to fix it?

+1  A: 

Usually the name of the Authenticatioin cookie (.aspxauth is default) is defined in the web.config. Just change the value for the cookie name in one of the application's web.config.

TheGeekYouNeed
@Cen thanks a lot. It works!!
isthatacode