473,413 Members | 2,044 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

migrating Access app to ASP.NET?

Hi there,

I've got an MS Access application with multiple tables, queries, forms
(and sub-forms!), reports ...

It would be neat if that application could be migrated to ASP.NET since
it wouldn't require the installation process anymore of each new user
who is supposed to work with it and the Office version hassle (97, 2000,
2004 etc) would be over too.

Now my question, is that really feasible? Access provides a GUI
experience that seems hard to simulate on a web interface.

Simple 'things' in Access seem to be difficult to emulate in the
browser: direct editing in forms; subforms (are subforms even
possible???); querying data from a second opened form; reports; ...

So when is it useful to make a web interface and when is it useful to
use ACCESS? Can an Access application be built using ASP.NET without
having to invest x times the amount of work in it?

Or would the solution be hybrid? Web for some users/tasks, Access for
others? But it seems weird to split the app in two?

Thanks everyone,

Jerome
Nov 18 '05 #1
3 1625
Good question. I can only speak for myself. If an application will be
deployed to a specific set of users on a LAN, I'd go with the richness of an
Access front-end any day. But if an application will be accessed by a random
or undefined number of users, you need to build a web interface because you
cannot predit who will use your application.

For example, I rolled out a class registration database for a client with an
ASP front-end because it will be used by all its 600 and so employees to
enroll in classes. No way you are going to roll that out as an Access
front-end to all those people, right? So pretty much, it is a web "service".

--
Regards,

Sal Rosario
Microsoft Access Database Cosultant
www.salrosario.com
"Jerome" <jh***@no.mnhn.spam.lu> wrote in message
news:#W**************@TK2MSFTNGP10.phx.gbl...
Hi there,

I've got an MS Access application with multiple tables, queries, forms
(and sub-forms!), reports ...

It would be neat if that application could be migrated to ASP.NET since
it wouldn't require the installation process anymore of each new user
who is supposed to work with it and the Office version hassle (97, 2000,
2004 etc) would be over too.

Now my question, is that really feasible? Access provides a GUI
experience that seems hard to simulate on a web interface.

Simple 'things' in Access seem to be difficult to emulate in the
browser: direct editing in forms; subforms (are subforms even
possible???); querying data from a second opened form; reports; ...

So when is it useful to make a web interface and when is it useful to
use ACCESS? Can an Access application be built using ASP.NET without
having to invest x times the amount of work in it?

Or would the solution be hybrid? Web for some users/tasks, Access for
others? But it seems weird to split the app in two?

Thanks everyone,

Jerome
Nov 18 '05 #2
If you have very simple forms you may be able to duplicate their functions
in a web application. If the forms are complex, there is no way that you can
duplicate the richness of an Access form in a web application. You cannot
really do subforms in a web application, but there are similar things like a
form in an I-Frame. The biggest problem is expense. It will take at least 3
times as long and often as much as 5 or 6 times as long to build a web
application as to build an Access application.

For wide area networks, there isn't much choice unless you go with Terminal
Services, which can cost even more under certain circumstances.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access

"Jerome" <jh***@no.mnhn.spam.lu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi there,

I've got an MS Access application with multiple tables, queries, forms
(and sub-forms!), reports ...

It would be neat if that application could be migrated to ASP.NET since
it wouldn't require the installation process anymore of each new user
who is supposed to work with it and the Office version hassle (97, 2000,
2004 etc) would be over too.

Now my question, is that really feasible? Access provides a GUI
experience that seems hard to simulate on a web interface.

Simple 'things' in Access seem to be difficult to emulate in the
browser: direct editing in forms; subforms (are subforms even
possible???); querying data from a second opened form; reports; ...

So when is it useful to make a web interface and when is it useful to
use ACCESS? Can an Access application be built using ASP.NET without
having to invest x times the amount of work in it?

Or would the solution be hybrid? Web for some users/tasks, Access for
others? But it seems weird to split the app in two?

Thanks everyone,

Jerome

Nov 18 '05 #3
In my experience I only use pure Access applications for small niche
applications
that do not have many users. Everything else ends up going the SQl
Server/Web interface
route.

One hybrid approach is to migrate the reporting side of your Access
application to the web
and keep all data entry etc... using a full Access application. My company
makes a product to
help get Access reports to the web without requiring you to make many
changes in the reports
themselves. A good deal of applications have a few users that enter data
and a larger audience
that looks at the data using reports etc...

HTH,
Mark
RPT Software
http://www.rptsoftware.com


"Jerome" <jh***@no.mnhn.spam.lu> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Hi there,

I've got an MS Access application with multiple tables, queries, forms
(and sub-forms!), reports ...

It would be neat if that application could be migrated to ASP.NET since
it wouldn't require the installation process anymore of each new user
who is supposed to work with it and the Office version hassle (97, 2000,
2004 etc) would be over too.

Now my question, is that really feasible? Access provides a GUI
experience that seems hard to simulate on a web interface.

Simple 'things' in Access seem to be difficult to emulate in the
browser: direct editing in forms; subforms (are subforms even
possible???); querying data from a second opened form; reports; ...

So when is it useful to make a web interface and when is it useful to
use ACCESS? Can an Access application be built using ASP.NET without
having to invest x times the amount of work in it?

Or would the solution be hybrid? Web for some users/tasks, Access for
others? But it seems weird to split the app in two?

Thanks everyone,

Jerome

Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: lcifers | last post by:
First off, sorry if my cross posting offends anyone. I'm posting this in Access and SQL Server groups - not sure which one is appropriate. I have a relatively simple ASP.NET/VB.NET application...
4
by: Bernardo Robelo | last post by:
Hi, I am interested in migrating Microsoft Access database to Postgres database. But I do not have idea of like initiating. Maybe some tool exists for this problem. Thanks you. Bernardo
6
by: Hi5 | last post by:
Hi, I am working on a project which is to migrate an existing excel sheet to access I have done 90% of it . But there are some gery areas which I don't understande them. Is there any one that...
6
by: Shai Levi | last post by:
Hi, I'm trying to migrate native c++ class to managed c++ class. The native class header definition looks as: class NativeClass { public: typedef void (CbFunc1)(int n,void* p);
3
by: BobRoyAce | last post by:
I would really appreciate recommendations for sources of materials on migrating ASP applications to ASP.NET (books, URL's, etc.). Also, is there a magazine that is particularly good for .NET stuff....
11
by: Neil | last post by:
We are running SQL 7, using Access 2000 as a front end. Our network person is wanting to migrate to Windows 2003 (we're currently on Windows 2000), and wants to know if we should migrate to SQL...
2
by: Solar Code | last post by:
Do you know of any developers that have migrated an application from Access to .NET (ASP.NET or Windows Forms) using the NetEdge Refactor Express Service? I've been looking for white papers,...
13
by: Matt Fielder | last post by:
First off, if this is better posted in another group that qualifies as a manged group, please let me know. I currently have an application written in VB.Net using MSDE as the database. Current...
11
by: KK | last post by:
I have an application (Developed in MS access with two MDB's one for FE and another for BE) distributed to user group. We have new requirements that needs to modify the tables structures including...
64
by: John | last post by:
Hello there, Im cursing my place of employment...and its taken me a month to realise it... The scenario: Ive just stepped into a role to migrate an access database to VB.Net. The access...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.