我想更改控件,以便显示犹太日期。 我尝试了下一个代码:
protected void Page_Load(object sender, EventArgs e)
{
System.Globalization.CultureInfo culture =
System.Globalization.CultureInfo.CreateSpecificCulture("he-IL");
System.Threading.Thread.CurrentThread.CurrentCulture = culture;
System.Threading.Thread.CurrentThread.CurrentUICulture = culture;
...
}
但它只是用希伯来语(日期名称)显示格里高利历。 我通过在aspx文件中添加以下内容得到了相同的结果:
UICulture="he" Culture="he-IL"
感谢您的帮助。