Questo codice, che prima funzionava, ora mi da il seguente errore:

Errore server nell'applicazione '/'.
--------------------------------------------------------------------------------

Impossibile trovare ISAM installabile.
Descrizione: Eccezione non gestita durante l'esecuzione della richiesta Web corrente. Per ulteriori informazioni sull'errore e sul suo punto di origine nel codice, vedere l'analisi dello stack.

Dettagli eccezione: System.Data.OleDb.OleDbException: Impossibile trovare ISAM installabile.

Errore nel codice sorgente:


Riga 7: Dim myCommand as new OleDbDataAdapter("SELECT * FROM tblUsers", myConnection)
Riga 8: Dim ds as DataSet = new Dataset()
Riga 9: myCommand.Fill(ds, "tblUsers")
Riga 10: Repeater1.DataSource = ds.Tables("tblUsers").DefaultView
Riga 11: DataBind()


File sorgente: C:\Dev\repeater.aspx Riga: 9

Analisi dello stack:


[OleDbException (0x80004005): Impossibile trovare ISAM installabile.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +51
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen(IDbConn ection connection, ConnectionState& originalState) +44
System.Data.Common.DbDataAdapter.FillFromCommand(O bject data, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet, String srcTable) +36
ASP.repeater_aspx.Page_Load(Object obj, EventArgs e) in C:\Dev\repeater.aspx:9
System.Web.UI.Control.OnLoad(EventArgs e) +55
System.Web.UI.Control.LoadRecursive() +27
System.Web.UI.Page.ProcessRequestMain() +731




--------------------------------------------------------------------------------
Informazioni di versione: Versione di Microsoft .NET Framework:1.1.4322.573; Versione di ASP.NET:1.1.4322.573


A cosa è dovuto e come si risolve? :master: