在網上查找大量資料
以下為引用的內容
<%
strconnection="driver={mysql odbc
set conn = server
conn
strquery = "select * from News"
set rs = conn
if not rs
%>
<table>
<tr>
<td<b>序列號</b></td>
<td><b>標題</b></td>
</tr>
<%
do while not rs
%>
<tr>
<td><%=rs("id")%></td>
<td><%=rs("NTitle")%></td>
</tr>
<%
rs
loop
%>
</table>
<%
else
response
end if
rs
conn
set conn = nothing
set rsdata = nothing
%>
From:http://tw.wingwit.com/Article/program/net/201311/14141.html