大家进来看一下,一个传递参数的简单问题?
modou 2002-11-06 05:30:02 <script language="JavaScript" src="test.asp?width="+screen.width type="text/JavaScript"></script>
这样传递的变量width为什么得不到width的值?
我怎样可以使用上边的那种格式把屏幕的宽度传递到asp页面?
test.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
response.write "document.write('"&request.QueryString("width")&"')"
%>