I've got some sort of issue that never faced before. I've moved a website which has two languages (English/Arabic) from one server to another, everything works fine except the Date Globalization. I am using ar-AE, and when I convert Date using this format, it just returns English version. But if I use ar-SA, it will return Arabic format but in Hijri Calendar, which is what I don't want. If you don't know, ar-AE will not convert date to Hijri date and instead just changes the notation to Arabic. I am using .Net framework 3.5 SP1.
Example:
Response.Write(DateTime.UtcNow.ToString("dddd MMMM dd, yyyy",System.Globalization.CultureInfo.CreateSpecificCulture("ar-AE")));
Anybody has idea how to overcome this issue?