I stored value in the cookie and can login from my site. But i am trying to get the cookie value from my Win App but it does not return any cookie value. The code that i have used there is given Value
HttpWebRequest webRequest=(HttpWebRequest)WebRequest.Create("http://localhost:9699/CokieTest/Default.aspx");
webRequest.Method = "Post";
webRequest.ContentType = "application/x-www-form-urlencoded";
HttpWebResponse response = (HttpWebResponse)webRequest.GetResponse();
string cookieValue= response.Cookies["RememberMe"].Value;