show/hide this revision's text 2 added 51 characters in body

hi all,

I'm trying to add a time stamp on timestamp to a file. However the datetime format to string look DateTime Format ToString() looks weird to me.

here

Here is my code:

Dim _timeStamp As String = Date.Now.ToString("dd_mm_yyyy")

but the value look looks like this:

_timeStamp = "03_24_2009"

I check checked my PC and the current date is correct. Shouldn't the value look like this"03_03_2009". : 03_03_2009?

show/hide this revision's text 1

.Net: DateTime String format

hi all, I'm trying to add a time stamp on a file. However the datetime format to string look weird to me.

here is my code:

Dim _timeStamp As String = Date.Now.ToString("dd_mm_yyyy")

but value look like this:

_timeStamp = "03_24_2009"

I check my PC and the current date is correct. Shouldn't the value look like this "03_03_2009".