XMLHttpRequest getAllResponseHeaders() Method
Complete XMLHttpRequest Object Reference
Definition and Usage
The getAllResponseHeaders() method gets a string containing all response
headers of the XMLHttpRequest object.
A response header contains file information like length, server-type,
content-type, date-modified, etc.
Syntax
xmlHttp.getAllResponseHeaders()
|
Example
The following code outputs all response headers in a HTML element with
id="headers":
<html>
<body>
<span id="headers"></span>
<script type="text/javascript">
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for Firefox, Mozilla, IE7, etc.
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange = function()
{
if(xmlhttp.readyState == 4)
{
x=xmlhttp.getAllResponseHeaders();
document.getElementById("headers").innerHTML=x;
}
}
xmlhttp.open("GET", "note.xml", true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
</script>
</body>
</html>
|
Output should be something like this (browser dependant):
Content-Length: 195 Content-Type: text/xml
ETag: "b34ba3751251c81:4cd" X-Powered-By: ASP.NET
MicrosoftOfficeWebServer: 5.0_Pub
Last-Modified: Mon, 07 Jan 2008 09:48:30 GMT
|
Try-It-Yourself Demos
getAllResponseHeaders()
Get all response headers from a XMLHttpRequest object
Complete XMLHttpRequest Object Reference
Make your web applications look like a million bucks
|
|
Most web applications today use boring methods to present data to their viewers using grids or simple HTML tables. FusionCharts induces "life" into the web applications by converting monotonous data into lively charts, gauges & maps.
FusionCharts works with all technologies like ASP, ASP.NET, PHP, ColdFusion, Ruby on Rails, JSP, HTML pages etc.
and connects to any database to render animated & interactive charts. It takes less than 15 minutes and no expertise
whatsoever to build your first chart and just a glance of it to captivate your audience. This fact is endorsed by our
12,000 customers and 150,000 users which include a majority of the Fortune 500 companies.
And yeah, your applications could look like a million bucks by spending just $69.
So go ahead, download your
copy of FusionCharts and start "wow-ing" your customers now!
|
|