<% Dim oConn
Dim RS
Dim filePath
Dim Index
' Map authors database to physical path
filePath = Server.MapPath("svtp.mdb")
' Create ADO Connection Component to connect
' with sample database
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & filePath
Set RS = oConn.Execute("SELECT * FROM Table1 WHERE PageID ='Home page'")
%>