I am making an application in C# using the WebBrowser control. Problem is i am not from an english speaking country and that control seams to send an english language instead of
I've tried various means to solve this problem with little success.
The Accept-Language header seems to be hard-wired to use the culture configured in the user's Internet Settings. If you supply a value in the additionalHeaders parameter to WebBrowser.Navigate, this value will be overridden.
If you change this, your WebBrowser control should send the correct language.
I've also found a registry setting: HKEY_CURRENT_USER/Software/Microsoft/Internet Explorer/International/AcceptLanguage
Changing this registry setting should also modify the WebBrowser control's Accept-Language header.
Unfortunately in my case, I want to be able to override the setting in a particular instance of the WebBrowser control and not modify global settings which may be used by other applications. So this approach is of no use. However, perhaps it will help you.