What you want to do can be achived with Client-side Javascript and you don't need ASP at all.
but that's not answering your question!
page1.htm
Code:
<HTML>
<body>
<script language=javascript>
location.replace("page2.asp?txtWidth=" + screen.width + "&txtHeight=" + screen.height );
</script>
</body>
</HTML>
page2.asp
Code:
<%@ Language=VBScript %>
<HTML>
<HEAD>
</HEAD>
<BODY>
<%
dim theWidth
dim theHeight
theWidth = request("txtWidth")
theHeight = request("txtHeight")
'put your redirection code here
response.write("Client width: " & theWidth & "<BR>")
response.write("Client height: " & theHeight & "<BR>")
%>
</BODY>
</HTML>
[Edited by Mark Sreeves on 10-09-2000 at 06:20 AM]