在网上查找大量资料经过自己的不懈努力终于测试成功了原来要在服务器上安装mysql odbc 还有数据库用户名及密码用下面的密码就可以了
以下为引用的内容
<%
strconnection="driver={mysql odbc driver};database=weste_net;server=localhost;uid=root;password="
set conn = servercreateobject("adodbconnection")
connopen strconnection
strquery = "select * from News"
set rs = connexecute(strquery)
if not rsbof then
%>
<table>
<tr>
<td<b>序列号</b></td>
<td><b>标题</b></td>
</tr>
<%
do while not rseof
%>
<tr>
<td><%=rs("id")%></td>
<td><%=rs("NTitle")%></td>
</tr>
<%
rsmovenext
loop
%>
</table>
<%
else
responsewrite("无暂时没有")
end if
rsclose
connclose
set conn = nothing
set rsdata = nothing
%>