Upload MS Access database to a website

Permabanned
Joined
17 Jan 2006
Posts
1,971
Location
Haskins
Guys, sorry to keep banging on about this. There has to be an easy way to do this that i'm missing.

It can be as totally bland as you like, but I just need to get my already created MS Access database into a webpage.

The page will be run from the PC (http://localhost) so i dont even need to 'upload it' so to speak!?

Please can someone help me, or point me in the direction of a tutorial...

Thanks
 
on the pages bit, create data access page by using a wizard.

the page is a hideous IE only active X page but it WILL do what you want with 0 programming effort. Obviously an ASP.net page with propper datagrids linked to the OleDb connection to the database would be abetter solution but that will get you moving...

HT
 
Assuming you're working in ASP you can use a simple DSNless connection string.

Code:
<%Set objConn = Server.CreateObject("ADODB.Connection")
objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & server.MapPath("Sample_Database.mdb")%>
 
Back
Top Bottom