tamethetikbalang
Programmer
for example I have a database.mdb on the LAN. the path is \\North\NORTH\database.mdb what should I put in the server.MapPath?
this is what I did
set conn=server.CreateObject ("adodb.connection")
connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("\\north\NORTH\databse.mdb") & ";Persist Security Info=False"
conn.Open connect
but i get this error
Server.MapPath(), ASP 0174 (0x80004005)
An invalid '/' or '\' was found in the Path parameter for the MapPath method.
this is what I did
set conn=server.CreateObject ("adodb.connection")
connect = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("\\north\NORTH\databse.mdb") & ";Persist Security Info=False"
conn.Open connect
but i get this error
Server.MapPath(), ASP 0174 (0x80004005)
An invalid '/' or '\' was found in the Path parameter for the MapPath method.