User-460007017 posted
Hi jimschan,
You could use this code to check the connection:
<%
If Response.IsClientConnected=true then
Response.Write("User is connectioned")
else
Response.Write("user is not connectioned")
end if
%>
To control the browser cache, you could use this code:
<%
Response.ExpiresAbsolute=#<expire date>#
%>
Best Regards,
Yuk Ding