peace be with you

i made a web page using "asp" but i want it to work in a fixed " ip & path " i using this code for this connection :::

Code:
dim db,db_path
set db = server.createobject("adodb.connection")
'db_path=server.mappath("db/sealab.mdb")
db_path= "\\192.168.0.62\db\sealab.mdb"
db.open "provider=microsoft.jet.oledb.4.0;data source="+db_path
but when i test it an error raise ::

Code:
Error Type:
Microsoft JET Database Engine (0x80004005)
The Microsoft Jet database engine cannot open the file '\\192.168.0.62\db\sealab.mdb'. It is already opened exclusively by another user, or you need permission to view its data.
/book3/conn.asp, line 16
how i can make the connection work with this case to make the " asp page" read data from fixed " ip " and path .
note :
the folder " db " is sharing .... read only

thanks