C# System.Globalization.CultureNotFoundException:不支持区域性

C# System.Globalization.CultureNotFoundException:不支持区域性,c#,asp.net,.net,C#,Asp.net,.net,我在C#中开发了一个网站,在我的计算机上可以在所有3种浏览器(FireFox、IE和Chrome)上运行。 在其他计算机上使用IE但在FireFox上收到以下错误: "Culture is not supported. Parameter name: name English is an invalid culture identifier. Description: An unhandled exception occurred during the execution of the curr

我在C#中开发了一个网站,在我的计算机上可以在所有3种浏览器(FireFox、IE和Chrome)上运行。 在其他计算机上使用IE但在FireFox上收到以下错误:

"Culture is not supported.
Parameter name: name
English is an invalid culture identifier.
Description: An unhandled exception occurred during the execution of the current web   request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Globalization.CultureNotFoundException: Culture is not  supported.
Parameter name: name
English is an invalid culture identifier.

Source Error:
Line 29:         if (!String.IsNullOrEmpty(langValue))
Line 30:         {
Line 31:             UICulture = langValue;
Line 32:             //Culture = langValue;
Line 33: "
我在IE和Chrome上的其他计算机上收到了相同的错误,但在FireFox上没有。 所有浏览器都更新到最新版本,并且都在Windows 7上。 有人能给我一个提示或解决这个问题的方法吗?
谢谢

您可以尝试这样做:

转到调试菜单->异常。。。并检查异常列表中的所有内容是否都未选中

同时尝试删除位于以下位置的ASP.NET临时文件夹中的所有文件:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files

英语不是一个标识符。尝试使用“en”或“en-US”

langValue的值从何而来?