datacontrol.aspx example problem
I am getting this message:
Could not find installable ISAM.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Could not find installable ISAM.
Source Error:
Line 21: objConnection = new OleDbConnection(strConnect);
Line 22: objCommand = new OleDbDataAdapter(strCommand, objConnection);
Line 23: objCommand.Fill(DataSet1, "products");
Line 24: DataGrid1.DataSource=DataSet1.Tables["Products"].DefaultView;
Line 25: DataGrid1.DataBind();
It is suggesting there is something wrong with my Line 23? Has anyone had thos problem, I have looked on other answers and the suggestion of changing the Windows registry as suggested by Microsoft seems a little drastic -- any help would be nice.
thanks,
wendy
|