chobo2
chobo2

Reputation: 85715

How to change date format on windows mobile phones?

I need my dates to be in U.S date format. How do I change it so when I do DateTime converts it does this format?

In asp.net I put some globalization thing in the web.config but got no clue when it comes to mobile phones.

Upvotes: 0

Views: 666

Answers (1)

popester
popester

Reputation: 1934

Either use DateTime.ToString() and pass your own date format string or set the culture.

Upvotes: 1

Related Questions