View Single Post
  #18 (permalink)  
Old Nov 11th, 2007, 23:57
bjbaughcum03 bjbaughcum03 is offline
Junior Member
Join Date: Oct 2007
Location: Alabama
Posts: 26
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Index Page help...

i changed it to...

Code: Select all
<%
Dim oConn, MM_Registry_STRING 
Set oConn = Server.CreateObject("ADODB.Connection")
MM_Registry_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
              "Data Source=C:\sites\folder\username\database\data.mdb;" & _
              "Persist Security Info=False"
oConn.Open(MM_Registry_STRING)
oConn.Close
Set oConn = nothing
%>
Reply With Quote