Originariamente inviato da armando16
wow... mi sono accorto che impostavo l'ip del server sbagliato...

adesso non è + un problema di connessione ma mi dice:

Il driver ODBC non supporta le proprietà richieste.
/database/maschera_prova.asp, line 23

codice:
    sql = "SELECT * FROM [dettaglio_movimenti]"
    Set rs = Server.CreateObject("ADODB.Recordset")
    rs.Open sql, conn, 3, 3
    If rs.eof Then
        rs.AddNew
    End If
la linea 23 è quella con

codice:
    rs.Open sql, conn, 3, 3

Prova con questa:

Set rs = Server.CreateObject("ADODB.Recordset")

With rstc
.LockType = 3
.CursorType = 3
.CursorLocation = 3
.ActiveConnection = conn
.Open "SELECT * FROM dettaglio_movimenti"
End With

If rs.eof Then
rs.AddNew
End If