Some countries like Iran, Israel and Saudi Arabia use their special calendar. for example Gregorian date "2012-12-11" is "1391-09-21" in Iranian calendar. For many reasons(Eg. database functionality) we decided to store our date variables in database with Gregorian date format. The challenge begin wen we want to build UI for that. In asp.net mvc it's easy to create a template and change the DateTime variable to suitable format. But the problem is in post back where the returned value is not recognized by mvc model binder(note that the days in month are not equal with Gregorian date). One way to fix this is to parse the incoming result, like:
[HttpPost]
public ActionResult Create(Content person,string customBirthdayDate)
{
person.Birthday = CustomDateTimeHelper.Parse(customBirthdayDate);
Service.Save(person);
return RedirectToAction("List");
}
Which work fine, but i am looking for better solution. An idea was to change the model to :
public class Person
{
public int Id{set;get;}
public string Name{set;get;}
public DateTime Birthday{set;get;}
public string CustomBirthdayDate
{
set{Birthday = CustomDateTimeHelper.Parse(value);}
get{return CustomDateTimeHelper.ConvertToCustomDate(Birthday); }
}
}
In this this approach there is no need to write extra code in Controllers Action. Any better idea ?? Thank you.