oltretutto scerivendo questo

<%@LANGUAGE = VBScript%>
<%
Dim sc, cn, rs
sc = "driver={Microsoft Access Driver (*.mdb)};dbq="
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open sc & Server.MapPath("database.mdb")
Set rs = Server.CreateObject("ADODB.Recordset")
%>
<html>
<head>
<title>Lettura dei dati</title>
</head>
<body>

<h1>Lettura dei dati</h1>

<%
rs.Open "SELECT * FROM autori ORDER BY aut_id ASC", cn, 1
If rs.EOF Then
%>


Nessun record trovato!</p>
<%
Else
While rs.EOF = False
%>



ID: <%=rs("aut_id")%>

Nome: <%=rs("aut_nome")%>
</p>
<%
rs.MoveNext
Wend
End If
rs.Close
%>

</body>
</html>
<%
Set rs = Nothing
cn.Close
Set cn = Nothing
%>


non mi da nulla...
io lo lancio da localtest/sebconsulting/data.asp

e mi da impossibile visualizzare la pagina...
e non capisco pèerchè un index.asp

me la legge