提示语句未结束
18行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
//不知道给这个有关系没 vbscript
<!--#include file="conn.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script type="text/javascript">
function aa(){
document.write(document.URL);
}
</script>
<table width="192" height="52" border="1" cellpadding="0" cellspacing="0">
<%
aa();
//这个是18行
Set rss=Server.CreateObject("Adodb.RecordSet")
sql="select * from aa"
rss.Open sql,conn,1,1
do while not rss.eof
%>
<tr>
<td><%=rss("id")%></td>
<td><%=rss("name")%></td>
</tr>
<%
rss.movenext
loop
%>
</table>
</body>
</html>
[
本帖最后由 guang2356447 于 2010-7-13 14:25 编辑 ]