TruthInSatire
Programmer
I'd like to get the res of the screen of the user but
response.write(request.serverVariables("HTTP_UA_PIXELS"
) desn't work any ideas why?
response.write(request.serverVariables("HTTP_UA_PIXELS"
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Dim item
For Each item in Request.ServerVariables
Response.Write item & " : " & Request.ServerVariables(item) & "<BR>" & vbcrlf
Next
%>