关于执行调用的问题(像统计代码)
比如现在有二个页面: index.asp yn.asp
现比如index.asp里的代码如下:(为了简化方便)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>统计</title>
</head><body>
sdfasdf
<script language="javascript" src="yn.asp"></script>
</body>
</html>
yn.asp这个页面我是这样写的:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>统计2</title>
</head><body>
<%
dim xx
xx="123"
response.write xx
%>
</body>
</html>
可我的页面根本就不能显示出123呀,这是怎么回事??
谁 知道yn.asp怎么写的吗或者我这个调用写错了,请指正。反正我的意思是通过像<script language="javascript" src="yn.asp"></script>这样的调用,来显示yn.asp里的输出内容
[此贴子已经被作者于2006-10-31 20:17:25编辑过]