Re: Geting Cached URLs
- Posted by Kat <gertie at PELL.NET> May 14, 2000
- 561 views
----- Original Message ----- From: "Thomas Parslow (PatRat)" <patrat at INAME.COM> To: <EUPHORIA at LISTSERV.MUOHIO.EDU> Sent: Sunday, May 14, 2000 4:23 PM Subject: Geting Cached URLs > Hi, > I'm using GetUrlCacheEntryInfoA from wininet.dll to retreive a cached web > page using it's url. The problem I'm having is that it doesn't seem to work > for some urls, this doesn't work: > http://www.infoseek.com/ > while this does: > http://infoseek.go.com/ > Both of these domain names evaluate to the same IP yet only one of them > works when used with GetUrlCacheEntryInfoA > Any ideas? HTTP/1.0 302 Moved Temporarily Date: Sun, 14 May 2000 22:04:28 GMT Location: http://www.go.com/ Connection: Keep-Alive Content-Length: 0 HTTP/1.0 302 Moved Temporarily Date: Sun, 14 May 2000 22:04:58 GMT Location: http://www.go.com/ Connection: Keep-Alive Content-Length: 0 So i am assuming they are both redirects, and only one properly resolves. Speaking of such things, what is it in windoze that caches web pages? I noticed if i have a web page open in IE, then do a getwebpage in Eu, Eu instantly has it. If i close the IE and then have Eu get the page, the access time is more normal. Using David Cuny's winlib and socks, not any IE calls that i am aware of. The reason this bothers me is that if i wish to access the page, then i want a *new* access, so if the page has been updated, i want that update, regardless of whether or not IE has the page displayed. Anyone have any ideas on this? Kat