Forum Moderators: open
I am familiar with PHP, but we operate in ASP (and I am not sure how we authenicate users) - I just know we need to have a user keep their login as they move from site to site (they are simply subdomains, ie - www.abc.com; blogs.abc.com; and files.abc.com are three sites)
Any suggestions on how to do this in ASP - do we use cookies/sessions?
As far as I'm aware this is not possible within IIS.
Off the top of my head, the easiest way to implement this functionality would be to write an HTTP proxy that acts as an intermediary betwen your ASP.Net application and the client machine. This proxy should rewrite the session cookie header in the HTTP response so as to make it valid across multiple domains.