Does anyone knows how to get microsecond value in VBScript (Classic ASP) without using SQL Queries
A:
I am still unabled to get micro precision but i can get milliseconds precision by using JSCRIPT
<script language=jscript runat=server>
function miliseconds() { var d = new Date(); return d.getTime(); }
</script>
then call the functions to get miliseconds precision :) hope that helps
Ariel
2010-06-18 07:20:59