Hi all,
i want to make world time using asp.net and c#.
Printable View
Hi all,
i want to make world time using asp.net and c#.
Hi,
If you mean UTC by world time, you can use ToUniversalTime Method of DateTime struct to convert a DateTiem to UTC DateTime.
See http://msdn.microsoft.com/library/de...ltimetopic.asp
Regards
Kish.
thnks kish,
i want to make time zone utility which u can see in :Codeguru editoption menu.
The Framework can give you information about the time zone you are in through the TimeZone.CurrentTimeZone property, but it cannot give you a list of all time zones as far as I'm aware. You'd have to supply that information yourself. There are probably Web services available that could provide the information.