I have a project to convert a massive MS Access application to asp.net. unfortunately I'm not that good in VBscripts therefore, I was wondering if I can run the same MS Access (as backend) on asp.net and change the interface little bit perhaps. accepting any other suggestions.

有帮助吗?

解决方案

It is possible to use an Access database as a back-end to an ASP.NET application, but according to the ASP.NET Data Access FAQ:

Microsoft strongly recommends against using Access in web applications.

(Click the link above for details.)

If the ASP.NET application will encounter anything more than the absolute lightest of traffic (especially if the Access application truly is "massive") then you would be well advised to convert the Access database to SQL Server and use that as the back-end for your ASP.NET app.

其他提示

You can use your ADO.net with c# to interact with access DB.
I think every thing else is static...

You will have to use the OledbConnection, OledbCommand, OledbAdaptor and others as you do it in its as easy as it is for SQL

Check this question

How to open connection with Microsoft Access database in C#

Or Follow this Microsoft Access Database Engine

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top