0
votes
1answer
10 views
How to determine UTC offset from server timezone?
I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page.
On …
0
votes
3answers
68 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, …
1
vote
1answer
27 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 …
0
votes
2answers
41 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
3answers
88 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
1answer
40 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);
…
2
votes
4answers
87 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
1answer
61 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 …
0
votes
3answers
132 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
30 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
58 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 …
2
votes
3answers
61 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
237 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
132 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 …
