如何让asp.net日历控件显示犹太日期?

时间:2016-11-03 17:44:31

标签: c# asp.net .net

我想更改控件,以便显示犹太日期。 我尝试了下一个代码:

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"

感谢您的帮助。

0 个答案:

没有答案