asp 连接mysql
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用户信息查询结果</title>
</head>
<body bgcolor="#FFFFFF">
<center><h1>用户信息查询</h1></center><br/>
<% section1 =request.form("section") content1=request.form("content")%>
<% set Conn =Server.CreateObject("ADODB.Connection") Conn.Open "phone_record"
sql="select * from phone_record where "§ion1& " ="'&content1&"' Set RS=Conn.Execute(sql) %>
<p>查询时间:<%=now%></p>
<table border=2>
<font color="#213554">
<tr><%for i=0 to RS.Fields.Count-1%>
<td><b><%=RS(i).Name%></b></td>
<%NEXT%>
</tr></font>
<%Do While Not RS.Eof%>
<tr>
<%FOR i=0 TO RS.Fields.Count-1%>
<td valign =top><%=RS(i)%></td>
<%next%>
</tr>
<%
RS.MoveNext
Loop
RS.Close
%>
</table>
</body>
</html>
asp代码的语法是不是有错啊,运行不出来啊,才学asp,果断很菜啊