I use the following to format DateTime :
DateTime CusDate = dateTimePicker1.Value; string Date = CusDate.ToString("ddMMMyyyy");
I get the format so that "new" is not in uppercase:
04Nov2011
But I want the Nova format in capital letters, for example:
04Nov2011
This is because I download the file from the website programmatically, which is in this format.
source share