调用的问题
我想用<script language="javascript"></script>的方式调用ss1.asp中的内容,我下面的代码错在哪里了,怎样改?
文件 ss.asp
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<link href="css1.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="500" border="0">
<tr>
<td><script language="javascript" src="ss1.asp"></script></td>
</tr>
</table>
</body>
</html>
文件 ss1.asp
<%
for i=1 to 10
a=a&i&<br>
next
response.write "<script language='javascript'>document.write (a)</javascript>"
%>