hola friend.. ho un errore alla linea in grassetto ma nn riesco a capire.

questo è l'errore:
Server.MapPath() error 'ASP 0173 : 80004005'

Invalid Path Character

/psnews/PSnews_set_and_open_database.asp, line 6

An invalid character was specified in the Path parameter for the MapPath method.




<%

' If using an Microsoft Access 2000 database, open with this method '
If strDatabaseType = "1" Then
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" &Server.MapPath("" & strAccessDatabasePathAndName & ";pwd=" & strAccessDatabasePassword & ";") End If

' If using a Microsoft SQL Server 2000 database, open with this method '
If strDatabaseType = "2" Then
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open = "DRIVER={SQL Server};SERVER=" & strSQLServerName & ";uid="& strSQLUserName &";pwd=" & strSQLPassword & ";database=" & strSQLDatabaseName & ""
End If

%>