Date format

T

Tony WONG

Both server (iis6) and my workstation (VS2008) set short date format
2009/12/22 at control panel (region)

But the aspx page at server shows 22/12/2009

The aspx page at my workstation shows 2009/12/22

How to make them same? Thanks.

Tony
 
G

Guest

Both server (iis6) and my workstation (VS2008) set short date format
2009/12/22 at control panel (region)

But the aspx page at server shows 22/12/2009

The aspx page at my workstation shows 2009/12/22

How to make them same?  Thanks.

Tony

The datetime format depends on current culture of the application.

In the web.config file add

<system.web>
<globalization culture="en-CA" uiCulture="en-CA" />
</system.web>

This assumes that your current culture will format the date as dd/MM/
yyyy (Canada)

See more: http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(VS.80).aspx
 
T

Tony WONG

Thanks Alexey

But i have questions
same aspx,
same web.config (before and after adding Globalization...)
same short date format (control panel)
at my VS2008 workstation and Windows 2003 server IIS6
but different date formats

Thank you.


"Anon User" <>
???????:[email protected]...
Both server (iis6) and my workstation (VS2008) set short date format
2009/12/22 at control panel (region)

But the aspx page at server shows 22/12/2009

The aspx page at my workstation shows 2009/12/22

How to make them same? Thanks.

Tony

The datetime format depends on current culture of the application.

In the web.config file add

<system.web>
<globalization culture="en-CA" uiCulture="en-CA" />
</system.web>

This assumes that your current culture will format the date as dd/MM/
yyyy (Canada)

See more:
http://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo(VS.80).aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,996
Messages
2,570,237
Members
46,825
Latest member
VernonQuy6

Latest Threads

Top