0

My system is W7, english; IIS 7.5, english, and VS2010 SP1, also english; why is VS throwing exceptions in spanish and how can I make it throw them in english?

bevacqua
  • 47,502
  • 56
  • 171
  • 285
  • I think you need to be a little bit more specific. I doubt it's vs throwing errors. Is it your app running in iis that throws errors in spanish and is that during debugging or when exactly do you get the spanish exceptions. Figuring out what account is running the proces when you get spanish messages is relevant in figuring out why it does so – Eddy Feb 21 '12 at 20:58
  • well yes obviously it's my app that throws the errors, I think the spanish exceptions happen only when I run applications under the context of IIS rather than cassini or a console application, etc. – bevacqua Feb 21 '12 at 21:04
  • Something like this: http://technet.microsoft.com/en-us/library/cc771836(v=ws.10).aspx ? – Eddy Feb 21 '12 at 21:16

1 Answers1

1

Change language of error messages in ASP.NET

The solution was to add the following to web.config

<system.web>
   <globalization uiCulture="en-US" />
</system.web>
Community
  • 1
  • 1
bevacqua
  • 47,502
  • 56
  • 171
  • 285