I think many people have the same problem when they start dealing with .NET: how to connect to an Access file on my distant server???<BR><BR>I tried the following code:<BR><BR>private void Page_Load(object sender, System.EventArgs e)<BR>{<BR>System.Data.OleDb.OleDbConnection Conn;<BR>System.Data.OleDb.OleDbDataAdapter Adapter;<BR>System.Data.DataSet DS;<BR>Conn=new System.Data.OleDb.OleDbConnection(@"PROVIDER=Microsoft.Jet.OLEDB.4.0; DATA SOURCE="+MapPath(@"/fpdb/hvdatabase2002.mdb")+";");<BR>Adapter=new System.Data.OleDb.OleDbDataAdapter(@"SELECT ID, Name FROM Members WHERE MemberType='Organization';", Conn);<BR>DS=new System.Data.DataSet();<BR>Adapter.Fill(DS, "Members");<BR>DataGrid1.DataSource=DS;<BR>DataGrid1.DataBind();<BR>Conn.Close();<BR>}<BR><BR>I always get the following error message:<BR><BR>[OleDbException (0x80040e21): Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.]<BR><BR><BR>THANKS IN ADVANCE...<BR><BR>