What do I use to input data thru the Internet to an Access Database?

  • Thread starter Thread starter linda
  • Start date Start date
L

linda

I need to create a "Web Page Form" to enter and receive
data from the Access Database. The "Form" would display
a schedule for a Truck Route and updated information will
be entered about that truck route (ie) actual time depart
& arrived at site, fuel used, miles traveled, what was
unloaded, loaded (correcting information on the form)
Would I create the form in access or frontpage or ???

I will get help on the connection thru the internet to
the database, but I must come up with the form......
 
A common way of doing it is creating a form in FrontPage and connecting it
to the Access database via ASP, ASP.Net, or other scripting language. I
guess that is the part that they are going to help you with.

--
Regards,

Sal Rosario
Microsoft Access Database Cosultant
www.salrosario.com


I need to create a "Web Page Form" to enter and receive
data from the Access Database. The "Form" would display
a schedule for a Truck Route and updated information will
be entered about that truck route (ie) actual time depart
& arrived at site, fuel used, miles traveled, what was
unloaded, loaded (correcting information on the form)
Would I create the form in access or frontpage or ???

I will get help on the connection thru the internet to
the database, but I must come up with the form......
 
I need to create a "Web Page Form" to enter and receive
data from the Access Database. The "Form" would display
a schedule for a Truck Route and updated information will
be entered about that truck route (ie) actual time depart
& arrived at site, fuel used, miles traveled, what was
unloaded, loaded (correcting information on the form)
Would I create the form in access or frontpage or ???

I will get help on the connection thru the internet to
the database, but I must come up with the form......

My favorite code editor for Web pages is:
NoteTab Pro
http://www.notetab.com
NoteTab Pro is an HTML editor that has search & replace for DISK files and
highlights HTML tags and costs about $19.95 (as of 8/2000).
NoteTab Light is freeware and doesn't have the features mentioned above.

And here is something I put together about ASP that hopefully might help
somehow.

Web Database Concept
http://www.bullschmidt.com/concept.asp

You and others can have access to a database hosted on the Web from any
location that has a browser with an Internet connection.

The Web database concept makes sense if you and your people want to do work in
various locations in or outside the office and still be "plugged" in.

For example you could have employees enter timesheets or have sales reps log
their contacts. Or perhaps you'd like customers to be able to check the status
of their orders online without having to call the company.

If you want a Web database, typically what would happen is that a database such
as Access or MySQL (basically just consisting of tables) would be put on the
Web.

Then "dynamic" Web pages (such as classic ASP pages which include VBScript,
HTML, and/or JavaScript) would be created acting like the old desktop
database's queries, forms, and reports to access the database - all hosted on a
Web Server.

Dynamic Web pages are similar in many ways to regular HTML pages. But they are
"live" because the user can read from and write to information in the database.
An example where you can login and add, edit, or view fictional customers and
invoices is at http://www.bullschmidt.com/login.asp

Not all Web hosts will handle dynamic Web pages but many do. The Web hosts
that can handle ASP pages usually have a Windows 2000 or Windows 2003 operating
system running an IIS Web server.

Here are a few good ASP sites:
o ASP101 Samples - http://www.asp101.com/samples
o W3Schools ASP Tutorial - http://www.w3schools.com/asp
o Microsoft VBScript Language Reference -
http://msdn.microsoft.com/scripting/default.htm?/scripting/VBScript/doc/vb
scripttoc.htm

And the following newsgroup is good:
microsoft.public.inetserver.asp.general

Or for a "quick and dirty" generic ASP open source solution to putting
databases on the Web (often works well for the admin area of a Web site) that
just requires setting up a configuration page for each table or query and
uploading the database to the Web as long as there is an autonumber field in
each table (and you'll probably also separately want to create login
capabilities), perhaps try something like this:
GenericDB by Eli Robillard
http://www.genericdb.com and then click on the Tips link to see an example

Best regards,
J. Paul Schmidt, Freelance Access and ASP Developer
www.Bullschmidt.com/Access - Sample Access Database
www.Bullschmidt.com/login.asp - Web Database Demo
 
Back
Top