views:

80

answers:

2

I'm looking for a way to create an online form that will update an Access database that has just a few tables. Does anyone know of a simple solution for this?

+2  A: 

ASP.NET should be able to do it just fine.

Bill Turner
+1  A: 

It depends on what web technology you use.

With Classic ASP, you can connect to the database the JET DB engine COM object that comes with any windows machine.

With ASP.NET, you can connect using OLEDB data connectors.

Matias Nino