I have a bit of code that display the date within a text field as shown below
textField.Text = DateTime.Now.ToShortDateString();
It shows as
11/03/2011
anyone know how I could format here to show it as
11/03/11
Thanks in advance
|
I have a bit of code that display the date within a text field as shown below
It shows as 11/03/2011 anyone know how I could format here to show it as 11/03/11 Thanks in advance |
||||
|
|
|
Yes. Take a look at this Date and Time formatting page. Or: |
|||||
|
|
|
Very simple:
note that the format string is case-sensitive, make sure you use capital 'M's for month, otherwise it will consider 'minutes' for 'm'. More general help about datetime formatting:
|
|||
|
|
But you need to remember that You could change the settings on your computer, in Windows 7, you will find the Short Date format under |
||||
|
|
|
Here is an alternative if you don't like format strings.
|
|||
|
|