I am building a multilingual MVC 4 Web Application (English, Spanish, Arabic ...), for the Internationalization part i followed This Tutorial, everything is fine so far, except on little detail, when choosing Arabic, all Date Data show up in Hijri (02/04/1436) when i want the Gregorian calendar, and since i need the cultureInfo to be dynamic, i can't set a default/Global Culture for the web app. is there a way to solve this issue by specifying the date to take a specific culture ?
Model
[Display(Name = "EntryDate", ResourceType = typeof(Resources.i18n))]
[DataType(DataType.Date), DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
public DateTime EntryDate { get; set; }
View
<td>@Html.DisplayFor(modelItem => item.EntryDate)</td>