I\'m working on localizing a website in French. However I am not supposed to change the date format to French. It must remain as per en-us format even if the culture is set
On the string, when you display the date, do the following:
CultureInfo ci = new CultureInfo("en-US"); string s = dateTimeObject.ToString(ci);
This is a simplified example however, you just need to do the necessary work you want to do on the DateTime object.
DateTime