No you dont understand me......
Using Physical ONLY Path
Example:
'Virtual path to database
strDbPathAndName = Server.MapPath("") 'This is the path of the database from this files location on the server
'Physical path to database
'strDbPathAndName = " \\nas01ent\domains\d\mydomain.co.il\user\private\CANTELLU.md b" 'Use this if you use the physical server path, eg:- C:\Inetpub\private\wwForum.mdb
Error:
Server.MapPath() error 'ASP 0171 : 80004005'
Missing Path
/forum/common.asp, line 193
The Path parameter must be specified for the MapPath method.
==========================================
Using Virtual MapPath ONLY
Example:
'Virtual path to database
strDbPathAndName = Server.MapPath(" \\nas01ent\domains\d\mydomain.co.il\user\private\CANTELLU.md b") 'This is the path of the database from this files location on the server
'Physical path to database
'strDbPathAndName = "" 'Use this if you use the physical server path, eg:- C:\Inetpub\private\wwForum.mdb
Error:
Server.MapPath() error 'ASP 0174 : 80004005'
Invalid Path Character(s)
/forum/common.asp, line 193
An invalid '/' or '\' was found in the Path parameter for the MapPath method.
==========================================
Using Both Virtual MapPath And Phisical Path
Example:
'Virtual path to database
strDbPathAndName = Server.MapPath(" \\nas01ent\domains\d\mydomain.co.il\user\private\CANTELLU.md b") 'This is the path of the database from this files location on the server
'Physical path to database
'strDbPathAndName = " \\nas01ent\domains\d\mydomain.co.il\user\private\CANTELLU.md b" 'Use this if you use the physical server path, eg:- C:\Inetpub\private\wwForum.mdb
Error:
Server.MapPath() error 'ASP 0174 : 80004005'
Invalid Path Character(s)
/forum/common.asp, line 193
An invalid '/' or '\' was found in the Path parameter for the MapPath method.
==========================================
You see i tried uploading common.asp with these 3 ways and always got errors!
what do i do?