Search Results

8
votes
2answers
557 views

How do I convert a date to a HTTP-formatted date in .Net / C#

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

How do I convert a date to a HTTP-formatted date in .Net / C#

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. S …
0
votes

.Net Compact Framework scrollbars - horizontal always show when vertical shows

Yes - I've got experience with that - unfortunately it was no different from your own. I've generally avoided scrolling forms and used paging wherever possible on .Net CF. If this is an option for …