views:

90

answers:

1

I have 2 aspx pages both gets date data from the same database table (same date field) but one shows the date like 04.09.2009, the other shows 9/4/2009. Both uses same format.

<%# Eval("newsDate", "{0:d}") %>

Any ideas? I am not familiar with web programming.

Cheers, Burak

A: 

YOu can specify the UICulture and Culture in the asp server tag (located at the top of your .aspx file), check if they are different.

Colin