I developing ASP.NET application using a Swedish version of Windows XP and Visual studio Professional. When ever i get an error aka. "yellow screen of death" the error message is in swedish, making it a bit hard to search for info about it.
How can i change what language the error messages in ASP.NET uses?
I have no language pack installed for the .net framework. I am however running an english windows xp with a swedish language interface pack on it.
I also have this in my web.config:
<system.web>
<globalization uiCulture="en-US" />
</system.web>
In web.config add:
<system.web>
<globalization uiCulture="en-US" />
</system.web>
or whatever language you prefer (note: uiCulture="en-US" not culture="en-US").
Also you should check that your app is not changing the uiCulture, for example to a user-specific uiCulture in global.asax.
If the error occurs before or during processing the web.config file, this will of course make no difference. In this case, you need to change the regional settings of the account under which the ASP.NET app is running.
If you are developing with VS2005 or later, you're probably running under the Cassini web server, under the identity of the current user - so just change the current user's settings. If you're using IIS, you probably want to change the regional settings of the ASPNET account - you can do this from Regional Settings in the Control Panel by checking the checkbox "Apply to current user and to the default user profile".
I had the same issue recently on IIS version 10 and these steps fixed it.
You can find your error translated into English on finderr.net
or
The second solution to this problem is to move, delete or rename a file containing translations of exceptions. These translations are in file:
%windir%\assembly\mscorlib.resources.dll { version: 2.0.0.0 culture: sv token: b77a5c561934e089}
After the change you have to restart .NET framework. Important information: Do it on your own risk and I do not know what are the side effects to this solution.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With