isthisthingon
IS-IT--Management
I am trying to get started using asp.net and making a web application that will access data and reports already created in an access database. I installed Web Matrix and Microsoft .net framework 1.1 and microsoft .net framework 1.1 sdk. Is there any additional software I need to install to create asp.net pages with web matrix and get them running? Thanks for all info. I have tried a connection string but got this error: type 'OleDbConnection' is not defined.
this is the code I tried using,
Dim objconnection As OleDbConnection
Dim objCommand As OleDbDataAdapter
Dim strConnect As String
Dim strCommand As String
Dim DataSet1 As New DataSet
strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;"
strConnect += "Data Source=c:\test.mdb;"
End Sub
this is the code I tried using,
Dim objconnection As OleDbConnection
Dim objCommand As OleDbDataAdapter
Dim strConnect As String
Dim strCommand As String
Dim DataSet1 As New DataSet
strConnect = "Provider=Microsoft.Jet.OLEDB.4.0;"
strConnect += "Data Source=c:\test.mdb;"
End Sub