I need help generating a timestamp the same way you generate one in flash (actionscript)
new Date().getTime()
That's how you generate it in actionscript, it returns a 13 character int. eg 1202497647515
Dim date1970 As Date = "#1/1/1970 12:00:00 AM#"
Dim datenow As Date = Date.Now
days = DateDiff(DateInterval.Second, date1970, datenow)
With VB.net it returns a 10 character int. eg 1202497717
How can I make the vb one the same as the actionscript one by only editing the vb?