XmlHttpRequest Demo

Cache.Get

Request time from server, using the browser's internal caching methods.
IE 6 will cache the results and always show the first time requested.
Firefox 1.0.x will always not cache the results.
No time retreived

Cache.GetNoCache

Request time from server with unique URLs to prevent caching.
All browsers should get new times every request.
No time retreived

Cache.GetCache

Request time from server and cache results internally.
All browsers should only show a new time on the first request,
and the first request after clearing the cache below.
No time retreived

Cache.FromCache

Request time from the internal cache only.
To cache a time, click the button under "Cache.GetCache" first.
No time cached

« Back to Http library