Tagged Questions

0
votes
3answers
48 views

How can I format DateTime to web UTC format?

Hi, I have a DateTime which I want to format to "2009-09-01T00:00:00.000Z", but the following code gives me "2009-09-01T00:00:00.000+01:00" (both lines): Console.Out.WriteLine(new DateTime(2009, 9, …
0
votes
3answers
74 views

Converting string containing localtime into UTC in C

I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this: char* date = "2009/09/01/00"; struct tm cal = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
0
votes
2answers
34 views

C# Define begin of day of a date in another timezone

Hi, I want to define the begin of a day in another timezone with .NET/C#. Example: My current timezone = GMT+1 so DateTime.Today returns 19/11/2009 23:00 UTC but actually I want to get the …
0
votes
1answer
45 views

Convert a summer date to utc in the winter?

The function mktime takes a struct tm as argument. One of the members of struct tm is tm_isdst. You can set this to 1 for wintertime, 0 for summertime, or -1 if you don't know. However, if during …
0
votes
0answers
21 views

Asp.net MVC overiding default getter and setters for linq to sql, for doing UTC conversions

Hi All, I'm getting to a point with my app where I'm about to try to roll out utc support. I've already got it all working and have written myself two utility classes, called convertToUtc and …
2
votes
4answers
79 views

How to manage timezones in a web application?

Hi, I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the …
0
votes
3answers
120 views

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need …
0
votes
1answer
35 views

How to get current UTC time in JSON format using Javascript?

Hello, I have a JSON Date for example: "\/Date(1258529233000)\/" I got below code to convert this JSON date to UTC Date in String Format. var s = "\\/Date(1258529233000)\\/"; s = s.slice(7, 20); …
0
votes
3answers
207 views

Convert UTC string to TDatetime in Delphi

eg. var tm : string; dt : tdatetime; tm := '2009-08-21T09:11:21Z'; dt := ? I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ? Any help …
0
votes
1answer
50 views

What is the difference between DateTime.ToUniversalTime and TimeZoneInfo.ConvertTimeToUtc

Hi, I'm just starting to think properly about rolling out a webapp that will need to do things to users at the start of their day, say 6am. Also at the end of their days. Everywhere I've been …
0
votes
1answer
22 views

Log Parser 2.2 skipping today’s IIS logs

I'm trying to count the number of hits for a particular URL on our web site by parsing our IIS logs using Log Parser 2.2. Everything seems to be working fine, except that its handling of timestamps is …
0
votes
1answer
52 views

Why does Java return a date in GMT-4.5 when choosing Co-ordinated Universal Time time zone in Windows?

We have seen a strange issue on some Windows XP machines involving the "Co-ordinated Universal Time" time zone. Not all Windows XP machines seem to have it, but on those that do, the following simple …
1
vote
3answers
57 views

Cache.Add absolute expiration - UTC based or not?

The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes: DateTime.Now.AddSeconds(60) as the value of the absoluteExpiration parameter. I'd have thought that …
0
votes
2answers
217 views

Timestamp comparison in MySQL and PHP ( UTC, +0000, Timezones )

I'm trying to determine whether a string that represents the date and time, given in a JSON Twitter feed is within a range of timestamp columns in MySQL. Here's the example string: 'Sat, 31 Oct 2009 …
2
votes
7answers
129 views

How to determine the localtime of a timestamp for different timezones?

Hi all, I got UTC timestamps and want to display them for different timezones. Maybe an example can clarify what I am trying to do: Given the timestamp 1259431620000 those times should be …

1 2 3 4 5 next
15 30 50 per page