ASP内调用,获取从1970.1.1到系统现在时间的毫秒数函数如下: <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% Public Function getTime() getTime = DateDiff("s", "1970-01-01 00:00:00", Date()) * 1000 + Int(CDbl(Timer()) * 1000) End Function %><%=getTime()%> http://www.txdnet.cn/essay/view.jsp?tid=1257390792890&cid=2

评论