ADO/ADO.NET - Internet Server Error: Object/module not found Error While connecting MS Access Remotely..

Asked By vsd on 19-Jul-13 02:30 AM

How to Connect access database from remote location....

While Connecting I am getting an error  "Internet Server Error: Object/module not found". Is there any solution???

Here is my code :

OleDbConnection con = new OleDbConnection("Provider=MS Remote; Remote Server=http://xxxxxxx; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\\C:\\Inetpub\\\\wwwroot\\abcd.mdb;Password=xxxx;Persist Security Info=False");
        OleDbCommand cmd = new OleDbCommand("select * from log", con);
        OleDbDataAdapter da = new OleDbDataAdapter(cmd);
        DataSet ds = new DataSet();
        da.Fill(ds);


Pls give me the correct code.......