I have a mobile version web application of my website with domain, main website http://hello.world.com mobile website http://m.hello.world.com
if the user logs into my mobile website and user visits main web application he should be logged into the main website as well and viceversa. i am setting login cokkies.
i tried to set the path like:
HttpCookie cookie = FormsAuthentication.GetAuthCookie(userName, isPersistent);
cookie.Path = "/";
but didn't work. Let me know how can i solve this.