Is it possible to add a cookie for a domain that I don't own?
for example, if my code is running from example.com, is it possible to do :
HttpCookie cookie = new HttpCookie("name", "value");
cookie.Domain = "microsoft.com";
Response.Cookies.Add(cookie);
Any help greatly appreciated!
...
Go to the complete details ...