1

I have a simple question. I have two different projects like

http://login.mydomain.com

and

http://test.mydomain.com

. As it's name suggests, I login from login project and response redirect to test project.

I am able to create cookie for login.mydomain.com but I can not read it from test.mydoamin.com.
My question is can I create cookie from login.mydomain.com to www.mydomain.com and read it from test.mydomain.com as if I am reading it from www.mydomain.com.


This is how I create my cookies.

Response.Cookies["UserValidForMyDomain"].Value = myvalue;
Response.Cookies["UserValidForMyDomain"].Expires = dtExpireDate;

and how I read them.

string myValue = Request.Cookies["UserValidForMyDomain"].Value;
Cute Bear
  • 3,223
  • 13
  • 44
  • 69

3 Answers3

4

No, but you can create a wildcard cookie for the domain of .mydomain.com which will allow any subdomain to read/write it.

Haney
  • 32,775
  • 8
  • 59
  • 68
2

TO WRITE

HttpCookie hc = new HttpCookie("key", "value");
hc.Domain = ".mydomain.com";
hc.Expires = DateTime.Now.AddMonths(3);
HttpContext.Current.Response.Cookies.Add(hc);

TO READ

HttpContext.Current.Request.Cookies["key"].Value
Cute Bear
  • 3,223
  • 13
  • 44
  • 69
0

In php this will do session_set_cookie_params

In asp and equivalent, these stackoverflow thread might be usefull

How to share session among Multiple Domains on single asp.net website?

How can you keep a session across multiple subdomains in c# mvc?

Community
  • 1
  • 1
Temitayo
  • 802
  • 2
  • 12
  • 28