|
This page contains all of the posts and discussion on MemeStreams referencing the following web page: ASP.NET and user agents. You can find discussions on MemeStreams as you surf the web, even if you aren't a MemeStreams member, using the Threads Bookmarklet.
|
ASP.NET and user agents by Acidus at 5:43 pm EST, Jan 22, 2008 |
ASP.NET does not push any JavaScript in a response if the request does not have a User-Agent header. This is most likely from that built-in "Capabilities" info available on the incoming Request object. Interesting, and annoying. webClient.Headers.Add("User-Agent",...) to the rescue! |
|
RE: ASP.NET and user agents by Decius at 8:10 am EST, Jan 23, 2008 |
Acidus wrote: ASP.NET does not push any JavaScript in a response if the request does not have a User-Agent header. This is most likely from that built-in "Capabilities" info available on the incoming Request object. Interesting, and annoying. webClient.Headers.Add("User-Agent",...) to the rescue!
I'm pretty sure the whole thing was intentionally designed to be a royal pain in the ass if your User Agent isn't IE. |
|
|
|