yoni
yoni

Reputation: 11

can webserver recognize webbrowser control vs internet explorer software when user load page?

can webserver recognize webbrowser control vs internet explorer software when user load page ?

if i load page through webbrowser control in c# i get "500 server error" when i do it in the internet explorer software it work o.k.

why there is diffrent behevior and how i can manage that ?

thanking in advance.

Upvotes: 1

Views: 235

Answers (1)

Marc Gravell
Marc Gravell

Reputation: 1062770

That sounds like maybe it is reacting to a different cookie value or similar. WebBrowser is IE (to most purposes). A 500 is at the server, but WebBrowser is the client.

You might be able to hook WebBrowser to supply a different user-agent, but by default it should appear the same.

Upvotes: 1

Related Questions