Hi,
You may have the problem if it is .Net CF 2.0 SP1, the below links gives you a solution
http://www.pcreview.co.uk/forums/thread-3686932.phphttp://www.eggheadcafe.com/software/aspnet/33592837/datetimenow-returns-inco.aspxDateTime.Now will gives you the system time for me properly in .Net CF 2.0 SP2, i never faced this problem.For sending to server, you can use UtcTime
DateTime.UtcNow.ToString("
s", CultureInfo.InvariantCultu
re)
The above sentence gives you the current time in UTC and invariant of all cultures.
Regards
Deepu