- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们使用 CultureInfo(customCulture) 将文化设置为自定义文化
为了以防万一,我们在 app_start 的 global.cs 中创建了 customCulture。
在我的本地 PC 上,这工作正常。但是在网络服务器上,当我去设置文化时,我得到了不支持文化的错误?我检查了 Windows\Globalization 文件夹,那里有一个文化文件用于正确的文化?
同样的代码在 3.5 下运行良好?
最佳答案
为了防止其他人遇到这个问题,我不得不编写一个命令行工具来注销文化,然后重新注册。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;
namespace InstallCulture
{
class Program
{
static void Main(string[] args)
{
// Is CustomCulture already installed?
string parentCultureName = "en-GB";
string extendedName = "custom";
System.Globalization.CultureInfo[] userCultures = System.Globalization.CultureInfo.GetCultures(System.Globalization.CultureTypes.UserCustomCulture);
Console.WriteLine(string.Format("number of user cultures:{0}", userCultures.Count()));
Console.WriteLine(string.Format("Setting culture {0}-{1}", parentCultureName, extendedName));
// Install CustomCulture based on language parent.
System.Globalization.CultureAndRegionInfoBuilder builder = new System.Globalization.CultureAndRegionInfoBuilder(
string.Format("{0}-{1}", parentCultureName, extendedName),
System.Globalization.CultureAndRegionModifiers.None);
builder.LoadDataFromCultureInfo(new System.Globalization.CultureInfo("en-GB"));
builder.LoadDataFromRegionInfo(new System.Globalization.RegionInfo("GB"));
Console.WriteLine("CultureName:. . . . . . . . . . {0}", builder.CultureName);
Console.WriteLine("CultureEnglishName: . . . . . . {0}", builder.CultureEnglishName);
Console.WriteLine("CultureNativeName:. . . . . . . {0}", builder.CultureNativeName);
foreach(System.Globalization.CultureInfo cultInfo in userCultures)
{
Console.WriteLine("Found culture in userCultures");
if(cultInfo.Name.ToLower() == string.Format("{0}-{1}", parentCultureName, extendedName).ToLower())
{
Console.WriteLine(string.Format("{0} already registered", cultInfo.Name));
CultureAndRegionInfoBuilder.Unregister("en-GB-custom");
Console.WriteLine("Unregistered culture en-GB-custom");
}
}
Console.WriteLine("Registering culture en-GB-PolHol");
builder.Register();
Console.WriteLine("Create new culture info object");
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en-GB-custom");
Console.WriteLine("Name: . . . . . . . . . . . . . {0}", culture.Name);
Console.WriteLine("EnglishName:. . . . . . . . . . {0}", culture.EnglishName);
Console.WriteLine("NativeName: . . . . . . . . . . {0}", culture.NativeName);
Console.WriteLine("Set threads to new culture");
System.Threading.Thread.CurrentThread.CurrentCulture = culture;
System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
Console.WriteLine("Set culture done");
}
}
}
关于c#-4.0 - CultureNotFoundException : Culture is not supported after upgrading to . 净 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5094973/
我的网站使用这样创建的自定义区域性: var cib = new CultureAndRegionInfoBuilder("en-gb-xxxx", CultureAndRegionModifiers
使用 es-CA 创建文化信息,显然不正确应该抛出异常,但现在不会。 这之前抛出了一个CultureNotFoundException:new CultureInfo("es-CA")。它现在似乎退回
我用 C# 开发了一个网站,该网站在我的计算机上可以在所有 3 种浏览器(FireFox、IE 和 Chrome)上运行。 在其他计算机上可以在 IE 上运行,但在 FireFox 上收到以下错误:
我已将我的 ASP.NET MVC 2 项目迁移到 VS 2010 + .NET 4.0。 现在,当我启动应用程序时,我在 IntelliTrace 和 Output/Gebug 窗口中收到很多“Cu
在我记得的所有 MVC 项目中(我现在使用的是版本 3),我收到错误: A first chance exception of type 'System.Globalization.CultureNo
我们使用 CultureInfo(customCulture) 将文化设置为自定义文化 为了以防万一,我们在 app_start 的 global.cs 中创建了 customCulture。 在我的
我是一名优秀的程序员,十分优秀!