Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change language of error messages in ASP.NET

Tags:

asp.net

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>
like image 304
Andreas R Avatar asked Oct 02 '08 09:10

Andreas R


3 Answers

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".

like image 131
Joe Avatar answered Nov 06 '22 05:11

Joe


I had the same issue recently on IIS version 10 and these steps fixed it.

  1. Open IIS Manager
  2. Select the server from the Connections panel
  3. Under the "ASP.NET" double click on ".NET Globalization"
  4. Edit "UI Culture" property
  5. Optionally set the "File" property to "utf-8"
  6. Finally click "Apply" and restart the server.
like image 17
Guru Dile Avatar answered Nov 06 '22 06:11

Guru Dile


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.

like image 3
Arek Bee Avatar answered Nov 06 '22 06:11

Arek Bee