Thread: Cookie warning
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
witek witek is offline
external usenet poster
 
Posts: 147
Default Cookie warning



Here is a piece of code

Dim http As MSXML2.ServerXMLHTTP
Set http = New MSXML2.ServerXMLHTTP
http.Open "get", url, False
http.send
If http.Status = 200 Then
m_doc1.body.innerHTML = http.responseText


right after last instruction a security popup window appears with the text:

"Windows Security Warning
To allow this website to provide information personalized for you, will
you allow it to put a small file (called a cookie) on your computer?"



does anybody know how to disable that.
the best solution would be to disable by code.