vote up 8 vote down star

How does one convert a .Net DateTime into a valid HTTP-formatted date string?

flag

25% accept rate

2 Answers

vote up 12 vote down

Dates can be converted to HTTP valid dates (RFC 1123) by using the "r" format string in .Net. HTTP dates need to be GMT / not offset - this can be done using the ToUniversalTime() method.

So, in C# for example:

string HttpDate = SomeDate.ToUniversalTime().ToString("r");

Right now, that produces HttpDate = "Sat, 16 Aug 2008 10:38:39 GMT"

See http://msdn.microsoft.com/en-us/library/az4se3k1.aspx for a list of .Net standard date & time format strings.

See http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html for the HTTP date specification, and background to other valid (but dated) RFC types for HTTP dates.

link|flag
vote up 1 vote down

To get the common web-formatted date of ISO 8601: as in: 2008-08-16T10:38:39Z. It's:

SomeDate.ToString("s");

or, as above for UTC:

SomeDate.ToUniversalTime().ToString("s");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.