Just make an sync xmlhttp request to a dedicated page on the server and get the response from it.
[1] On the client-side, make a handler
[tt]
function doit
surl="dedicated-page.asp"
set xmlhttp=createobject("msxml2.xmlhttp")
with xmlhttp
.open "get",surl & "?x=" & int(rnd*10000),false
.send
end with
if xmlhttp.status=200 then
sdata=xmlhttp.responsetext
else
sdata=""
end if
set xmlhttp=nothing
'you can now display sdata to some dedicated place on the page which contains the server date
'such as
'document.getElementById("xyz").value=sdata
'and you may need some formatting to make sdata presentable
end function
[/tt]
[2] And the dedicated-page.asp can be as simple as one liner.
<%
response.write now
%>
[3] You have to refine the above as it is air code. Furthermore, the error would be the time for transmitting the response.