Reputation: 3574
In Visual Studio and IIS I get Dutch exceptions. I'd like them to be English in order to copy them to seek for a proper solution.
I've tried:
None of the options above help and I've checked the other questions on SO about this case (which describe the options above for example) I'm in the dark about the proper solution and I hope there's just a setting instead of having to put something in every application.
Help appreciated.
My setup:
Upvotes: 0
Views: 332
Reputation: 156978
The reason I guess is that the original machine was installed with the Dutch language pack. The IIS account is Dutch. You can set the current Thread
s culture in .NET, but I don't know if it that smart to do that.
Options:
Home > .NET globalization
;Thread.CurrentThread.CurrentCulture
and Thread.CurrentThread.CurrentUICulture
(should do the same as you already did in the web.config
);Upvotes: 1