If I have an ASP.NET page making a request to a page in a different web site/server and that page tries to write a cookie, what will happen?
Will I have a cookie in the client machine? In the server of my first site? Will it be blocked because of some security issues?
Tks in advance!
Are you making the request through JavaScript (AJAX) or on the server-side? If the former, it won’t work unless the two sites are on the same domain. If the latter, the client will be unaffected (the first server will handle any cookie storage).