Namespace Import Fails...

proudfreak

New Member
I have a .aspx page to connect to access dbase and I get loads of errors, the root of the errors is:<BR><BR>Namespace or type 'ADO' for the Imports 'System.Data.ADO' cannot be found.<BR><BR>Do I have .net system files missing???<BR><BR>I read an article which said to connect to an access dbase i should import system.data.ado, is this correct?<BR><BR>I appreciate any help I get.<BR><BR>thanks.The System.Data.ADO namespace is old, as in Beta 1 old. :) Check out the documentation. The new namespace name is:<BR><BR>System.Data.OleDb<BR><BR>Also, the names of the classes in that namespace have changed. Be sure to check out the documentation!<BR><BR>Happy Programming!
 
Back
Top