
Nov 11th, 2007, 23:57
|
|
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
%>
|