If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Access Database On The Net

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-10-04, 03:57
mayner mayner is offline
Registered User
 
Join Date: Jan 2004
Posts: 2
Post Access Database On The Net

Hi,

I was wondering if anybody knew anything about posting Microsoft Access databases on the internet?

I've created a database, and found that Access has an option to save it as a .html file, which would work great, and when I upload it to my site, it doesn't work, because in the source, there is an absolute address.

I was wondering if anybody could give me a lot of help on this, cause this is new to me unfortunately... ha

I've been told I need ASP, I've been told i need SQL (both I know little about), I've also been told I only need IIS which comes with Windows XP I'm using.

If somebody could really clarify this for me, and lend me a hand on it, I would REALLY appreciate it!

Thank you VERY much,
Dan
Reply With Quote
  #2 (permalink)  
Old 01-10-04, 07:10
arnelR arnelR is offline
Registered User
 
Join Date: Dec 2003
Location: Philippines
Posts: 11
Yes, you need IIS (which comes with XP Pro Ed) and ASP to display and manipulate your data in the Access database. If you have MS Interdev so much the better. That's the programming environment for ASP. You don't need SQL anymore since you are using Access database.
Reply With Quote
  #3 (permalink)  
Old 01-10-04, 10:15
sundialsvcs sundialsvcs is offline
Registered User
 
Join Date: Oct 2003
Posts: 706
Red face

Quote:
Originally posted by arnelR
Yes, you need IIS (which comes with XP Pro Ed) and ASP to display and manipulate your data in the Access database. If you have MS Interdev so much the better. That's the programming environment for ASP. You don't need SQL anymore since you are using Access database.
Or you can do the same darned thing by putting the website on a hosting-company who will provide the necessary glue for you... IIS if you want to use that, Apache if you don't; Access [drivers] if you want to use that format, MS-SQL or MySQL or whatever if you don't.

Usually, imho, putting a web-site on "your own" computer is not the best approach; hosting companies (and btw, we're not one!) are there for a reason. You can spend quite a lot of money on "pro editions" of this-or-that before coming to that conclusion. Hosting companies not only provide the software you need, but they commit to keeping the site up 24/7, on very fast computers with good internet links.
__________________
ChimneySweep(R): fast, automatic
table repair at a click of the
mouse! http://www.sundialservices.com
Reply With Quote
  #4 (permalink)  
Old 01-10-04, 13:57
mayner mayner is offline
Registered User
 
Join Date: Jan 2004
Posts: 2
So basically the easiest way for me to get my Access Database up and running on the internet for whoever I want to view it, is to upload it to my website that I have with a hosting company? And just get them to help me with it?
Reply With Quote
  #5 (permalink)  
Old 01-13-04, 17:17
Mike Collier Mike Collier is offline
Registered User
 
Join Date: Jan 2004
Posts: 31
There are many other options too, but they require more experience.

If your users need to change the data on the internet and they prefer to use a gui (a bit like access) then you can use the remote explorer functionality of adoanywhere browser and REX.

Your ISP will be required to host REX server for you.

They are both currently FREE if you register at www.adoanywhere.com

Mike
Reply With Quote
  #6 (permalink)  
Old 02-03-04, 04:31
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
Here is something I put together about ASP that hopefully might help somehow.

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 (actually 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 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/...bscripttoc.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 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
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On