Monitoring http request header on a page [duplicate]
Possible Duplicates:
Accessing HTTP Headers in Javascript? How do I access the 开发者_JAVA技巧HTTP request header fields via JavaScript?
We can use httpwatch on IE or httpfox on Firefox to monitor http activity
If i don't want to use any plugs on browser...
Is it possible to monitor http request header on a page just by javascript?
No, the JavaScript standard doesn't specify any way to access HTTP headers.
Javascript only runs inside of a webpage. It can't access things like the http headers overall.
精彩评论