如何在一个ASP页面中返回当前浏览器的窗口大小?
一个空白的页面,要求打开后能返回当前浏览器的窗口大小,浏览器默认为IE好了,不管用什么方法返回js的alert也可,用asp的response.write直接写到页面上也...
一个空白的页面,要求打开后能返回当前浏览器的窗口大小,浏览器默认为IE好了,不管用什么方法返回js的alert也可,用asp的response.write直接写到页面上也可以。请给出CODE,最好是能够被调用的方法。谢谢了。
展开
3个回答
展开全部
信息返回给服务器:
客户端,文件存成IE.htm:
<html>
<body>
<script language="vbscript">
window.location="http://localhost/GetIE.asp?Width=" & screen.width & "&Height=" & screen.height
<script>
</body>
</html>
服务器端搜集信息,把下面的代码存成GetIE.asp放入上面代码文件同一个虚拟目录下:
<%
dim w,h
w=request.QueryString("Width")
h=request.QueryString("Height")
response.write "高度:" & w & "<br>"
response.write "宽度:" & h
%>
客户端,文件存成IE.htm:
<html>
<body>
<script language="vbscript">
window.location="http://localhost/GetIE.asp?Width=" & screen.width & "&Height=" & screen.height
<script>
</body>
</html>
服务器端搜集信息,把下面的代码存成GetIE.asp放入上面代码文件同一个虚拟目录下:
<%
dim w,h
w=request.QueryString("Width")
h=request.QueryString("Height")
response.write "高度:" & w & "<br>"
response.write "宽度:" & h
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script language="javascript">
alert("屏幕宽度:"+screen.width+"屏幕高度:"+screen.height)
</script>
alert("屏幕宽度:"+screen.width+"屏幕高度:"+screen.height)
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询