Web Hosting Talk







View Full Version : (Unix Time) to ASP.NET (vb.net)


Shannara
07-09-2004, 06:47 PM
Reference: http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=522150

I asked there, and they have responded. You can note my most recent response, and the fact that the code they provided did not work.

Does anybody have working code? Basically, this is to convert the post_time field in a phpbb database to a asp.net (vb.net) real date format.

catweazel
07-10-2004, 12:04 AM
The last post in that thread is correct. Your code just needs to be changed to:

Dim K As New DateTime(1970, 1, 1, 0, 0, 0)
K=K.AddSeconds(1089316377)

Shannara
07-10-2004, 02:56 PM
Thanks, that was what was missing from the code :) K = k +, etc.

Thanks :)