I set current date to the date control When first opening my application .
The code is this.
Then I just get the date value of the datepicker ,and pass the datetime to WCF service
I get the value of datepicker like this:
Our client's computer and server's computer are not at the same time zone.But When the service get the value ,the datetime is worng.It become the yesterday ,and it has a time difference.But after I change the value of datepicker manually,I do the same thing that send the datetime to the WCF service,It is right.There is no time difference.It is very strange.
So I think the default date type of the datepicker maybe a UTC?
Help!
Thank you!
The code is this.
dtpBookDate.SelectedDate = DateTime.Today
I get the value of datepicker like this:
dtpBookDate.SelectedDate.Value
So I think the default date type of the datepicker maybe a UTC?
Help!
Thank you!