L'unica pagina credo da modificare è quella dove vi è il percorso del database e cioè il file conection.asp che si trova dentro la cartella include il codice è questo:
codice:
<%
'########## Choose Database Connection Type ##########
'NOTE: The folder "database" or the folder you have the igallery.mdb in must have Read/Write permissions.
Dim SMPConn, DirectConn, strConnect, DBLocation
SMPConn = True ' Use Server.MapPath Connection: Server.MapPath(database/igallery.mdb)
DirectConn = False ' Use Direct Database Connection: C:\Inetpub\wwwroot\igallery\database\igallery.mdb
If SMPConn Then
' Server.MapPath Connection
' Identify Database Location Here:
DBLocation = "/mdb-database/igallery.mdb"
' MS ACCESS 2000 CONNECTION STRINGS
strConnect = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="& Server.MapPath(DBLocation) & ";"
ElseIf DirectConn Then
' Direct Connection
' Identify Database Location Here:
DBLocation = "C:\Blue-Collar Productions\igallery41sub\database\igallery.mdb" ' Passwords
' MS ACCESS 2000 CONNECTION STRINGS
strConnect = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="& DBLocation & ";"
End if
%>
Io ho solo modificato il percorso cioè questo DBLocation = "/mdb-database/igallery.mdb" non ho modificato nient'altro