Just a variation on Traceme's post:
The way he did it will work, however, the recordset that he is using is a slow type. If you need an indexed recordset, that is fine, but if you are just blasting through records, I would do it like this.
<%
Dim objConn
Set objConn=Server.CreateObject("ADODB.Connection")
objConn.ConnectionString="Provider=Microsoft.Jet.O LEDB.4.0;Data Source="& Server.MapPath("/dynamic/dbhvac.mdb")'this access was in my c:inetpub/wwwroot/dynamic
objConn.open
%>
use the above code to make the connection object then make recordset object
<%
sql = "select * from tablename"
set rs=objConn.execute(sql)
%>