Sharing cookies across different domains and different applications (classic ASP and ASP.NET)
Is there a way to share cookies across different domains and different applications (classic ASP and ASP.NET)
Is there a way to share cookies across different domains and different applications (classic ASP and ASP.NET)
In my website when the user clicks on the “Logout” button, the Logout.aspx page loads with code Session.Clear().
From a quick search on Stack Overflow I saw people suggesting the following way of checking if a cookie exists:
Can a cookie be shared between two sites on the same top level domain? Say www.example.com and secure.example.com ?
We are looking into implementing a cache for non-secure content, and need to segregate secure content to another domain.
What parameters does the cookie need? I’m using asp.net
What’s the best way to authenticate and track user authentication state from page to page? Some say session state, some say cookies?
What are the do’s and don’ts about Cache VS Session VS Cookies?
I have two sites, both on the same domain, but with different sub-domains.
site1.mydomain.com
site2.mydomain.com
I have very large website which uses a lot of cookies. There are approx. 14 different cookies are there. I have different cookies for each item. When a user surfs the site they will have 14 cookies in their browser. I do not want this.
I’ve implemented a custom role provider, and configured it in my web.config file like this:
By default, ASP.NET will set its cookies to use “mydomain.com” as their base. I’d prefer to have them use “www.mydomain.com” instead, so that I can have other “sub.mydomain.com” subdomains that are cookie-free.