home *** CD-ROM | disk | FTP | other *** search
- <%@ Language="VBScript" %>
- <%
- strSQL = "SELECT * FROM tblQuotes"
-
- ConnString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("flash.mdb")
- Set objConn = Server.CreateObject("ADODB.Connection")
- objConn.Open ConnString
-
- Set objRS = Server.CreateObject("ADODB.Recordset")
- objRS.Open strSQL, objConn
-
- intNumRS = 0
- Do Until objRS.EOF
- intNumRS = intNumRS + 1
- Response.Write "theQuote" & intNumRS
- Response.Write "=" & objRS("theQuote")
- Response.Write "&"
- objRS.MoveNext
- Loop
- Response.Write "intNumRS=" & intNumRS
-
- objRS.Close
- Set objRS = Nothing
- objConn.Close
- Set objConn = Nothing
- %>