473,403 Members | 2,222 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,403 software developers and data experts.

Access database using Internet Explorer

I have a database with an Employees table and a DataRecords table. It
is a one-to-many relationship.

Would it be possible to allow the Employees to enter their own records
via the web using internet explorer? In fact, ideally they would need
to login with some sort of EmployeeID and password (would this be stored
in the Employees table?) and then they would have certain access rights
(i.e. able to add a record, view/print certain reports). It would also
be necessary for a manager/administrator to have full access.

This would be ideal because it would save on having 50 employees fill
out sheets and hand them in to another employee who has to enter 250
records every month. It would also allow the employee to view their own
reports, or their team's reports, without having to make calls or send
e-mails, etc...they could just login and view what they want.

Well, this is uncharted territory for me, but I have been asked about
the possiblity of doing this. What options are there? Thanks!

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #1
4 15365
Access can be used with Internet Explorer through ASP (Active Server
Pages), but you have to have a server that is running Internet
Information Server (IIS - this server comes standard with any Microsoft
Server).

The only problem with Access on the Web is that if more than one or two
people access it at the same time, Access will crash. A more reliable
solution would be Sql Server which is designed for multi-user use on the
web. One option with Access though, is that you could add an ASP which
would only allow one user at a time to access Access.

Coding in ASP is a little bit more sophisticated than VBA. This means
that it is not as intuitive, not as easily picked up on the fly like VBA
where you have dropdown lists for everything. For 50 employees to use
Access on the web, I may question the reliability. If it were like 5
employees, Access would probably be an OK solution. But 50, hmmm.
Rich

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #2
Rich P <rp*****@aol.com> wrote in news:3fc5146f$0$88385$75868355
@news.frii.net:
Access can be used with Internet Explorer through ASP (Active Server
Pages), but you have to have a server that is running Internet
Information Server (IIS - this server comes standard with any Microsoft
Server).

The only problem with Access on the Web is that if more than one or two
people access it at the same time, Access will crash. A more reliable
solution would be Sql Server which is designed for multi-user use on the
web. One option with Access though, is that you could add an ASP which
would only allow one user at a time to access Access.

Coding in ASP is a little bit more sophisticated than VBA. This means
that it is not as intuitive, not as easily picked up on the fly like VBA
where you have dropdown lists for everything. For 50 employees to use
Access on the web, I may question the reliability. If it were like 5
employees, Access would probably be an OK solution. But 50, hmmm.

Rich


I know of many ASP-JET applications where thousands of users may be
connected to the web server at one time. They do not crash. Of course, they
are designed to minimize time of connection to the database. So who can say
how many concurrent db users there are?

If one uses Visual Interdev, (and I suspect many other development
platforms), Intellisense is fully implemented for ASP, VBScript, ADO,
JScript and Javascript.

I am a huge fan of SQL-Server but I see its main value as far as small
Internet enabled applications go as being the base for ADPs.

--
Lyle
(for e-mail refer to http://ffdba.com/contacts.htm)
Nov 12 '05 #3
rkc

"Rich P" <rp*****@aol.com> wrote in message
news:3f***********************@news.frii.net...
Access can be used with Internet Explorer through ASP (Active Server
Pages), but you have to have a server that is running Internet
Information Server (IIS - this server comes standard with any Microsoft
Server).

The only problem with Access on the Web is that if more than one or two
people access it at the same time, Access will crash. A more reliable
solution would be Sql Server which is designed for multi-user use on the
web. One option with Access though, is that you could add an ASP which
would only allow one user at a time to access Access.


So you're saying that if there is a need to add 250 records a month to a
Jet database via a web interface there is an imminent danger of the Jet
Engine burting into flames?

I'd wager Jet could handle 250 inserts from 50 different "users" in a
60 second span of a single day. That's assuming they could each fill
out 5 forms and submit them in that time span.

With a web interface you are not entering data into a bound form that
requires a connection to the database. The connection to the database
is established when the form is submitted and is held for the few seconds
it takes to insert the data.

The question is not whether Jet is an O.K. solution. The question is what
makes up the rest of the solution. Dabling in ASP is an option depending
on the skills base of the dabler and how soon a solution is desired.


Nov 12 '05 #4
Truth be told, I have never experimented with Access this way. I have
used Access(97 and 2K) on the web, but only for classes. This one
Instructor for a javascript class I took (a PhD maniac, and he was a
maniac) said Access would die as I had described. I had not thought
about ADP, but I am sure ADP would be fine. The original post was about
Access, not an ADP. I guess I could have suggested ADP before Sql
Server, but I am mainly a Sql Server guy now, although my roots are in
Access (DBase3+ actually, but then I went on haitus for 10 years and got
back on the Access wagon just as Access2 was leaving the scene).

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #5

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

Similar topics

2
by: Dennis Freud | last post by:
Hi, I´m asking for some general advice here. I have a project which has been developed in Delphi up to a point where my developer split up with me. I have to decide now wether access is suitable...
5
by: rob | last post by:
Hi to all. I am pretty new to using Access and am having a problem I hope someone can help me with. I want to access a MS-Access database from a web page. I have managed to get it "sort" of...
0
by: Bill Thom | last post by:
I have a Microsoft Access 2000 (9.0.4402 SR-1) database that I am attempting to launch from a hyperlink using Internet Explorer (Version 6.0.2800.1106). If I attempt to launch the database from...
3
by: C | last post by:
Re: Microsoft Knowledge Base Article - 870669 How to disable the ADODB.Stream object from Internet Explorer You may recently have heard of the vulnarability exposed by Internet Explorer as...
0
by: Jim M | last post by:
For about a year and a half now I have been working in Access 2002 at home and converting to Access 2000 for work (I need both versions). I made a few changes to forms and queries then converted to...
3
by: Lyle Fairfield | last post by:
In a recent thread there has been discussion about Data Access Pages. It has been suggested that they are not permitted on many or most secure sites. Perhaps, that it is so, although I know of no...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
17
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting...
4
by: attachmatey | last post by:
Greetings: I'm looking for some help in automating (what I thought would be) a simple procedure in Internet Explorer. I'm trying to put the following operation under a button click in an MS...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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...

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.