stupid question #1: I have an Access DSN on my pc called LCRI. How do I open a connection in ASP.NET for this? None of My old ASP code works for ADO.Net.... Sorry!
Printable View
stupid question #1: I have an Access DSN on my pc called LCRI. How do I open a connection in ASP.NET for this? None of My old ASP code works for ADO.Net.... Sorry!
You need to use Odbc objects not OleDb - e.g. OdbcConnection not OleDbConnection etc.
If you can it would be better performance-wise to use OleDb and not use a DSN.
DJ