Che errore è?
Server.MapPath() error 'ASP 0175 : 80004005'
Disallowed Path Characters
/banner/conn.asp, line 4
The '..' characters are not allowed in the Path parameter for the MapPath method.
ecco la pagina conn.asp
<%
Set Conn=Server.CreateObject("ADODB.Connection")
strConn="driver={Microsoft Access Driver (*.mdb)}; "
strConn=strConn & " DBQ=" & Server.MapPath("../mdb-database/generale.mdb")
strConn=strConn & ";pwd=" & strCode
Conn.Open strConn
%>