I have two applications on my webserver.
myserver.com/ApplicationA
myserver.com/ApplicationB
Both applications are using similar codebases and so there are several overlaps in their cookie names, which are causing problems...
I'm aware that it is possible to limit a cookie in ASP.Net so that only applications on a certain "Path" can access it. However, what I'd really like to do this without having to make any code changes to either application.
Is it possible to configuare an ASP.Net application to default to limiting ALL of its cookies to a certain path?
Thanks,
Neil