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 > advice on access

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-18-04, 14:31
neoice neoice is offline
Registered User
 
Join Date: Oct 2003
Posts: 58
advice on access

Hello,

I created an inventory and logging database for work using Access 2000 a couple of months ago and now I want to access this DB from the web.

Being new to programming I rather hoped somebody could advise me on how to start this.

We have win 2000 srv and IIS 5.0. Do I need to recreate the access front end in ASP or HTML? Currently I use the access switch board.

I don't suppose there is an easy way of converting my DB in HTML format?

Any help to set me on the right track will be much appreciated.

Thanks

Neil
Reply With Quote
  #2 (permalink)  
Old 05-18-04, 14:53
gyuan gyuan is offline
Registered User
 
Join Date: Dec 2003
Posts: 454
Are you talking about displaying data from database on the web page?
Reply With Quote
  #3 (permalink)  
Old 05-18-04, 15:36
neoice neoice is offline
Registered User
 
Join Date: Oct 2003
Posts: 58
Something along those lines. I would like to put the access forms into a webpage so we could use the program from the web. For example, all the combo boxes and add commands and report commands and so on. The more I think about this the more I think it is a harder project than I first thought. I simply want to place this DB on our website so we can use it on the move- amending and viewing the data.

I hope this makes sense.

Thanks

Mick
Reply With Quote
  #4 (permalink)  
Old 05-18-04, 15:54
Seppuku Seppuku is offline
Useless...
 
Join Date: Jul 2003
Location: SoCal
Posts: 721
You'll need to write all the functions in a web scripting language like ASP, PHP, etc. and HTML. So to view, add, delete, update records, you'll need to develop an HTML page in ASP (for example) that interfaces with the DB to do what you want. There are many online tutorials and books dedicated to doing just this.

An example flow of viewing a record in a DB would be:
1) Create connection to DB
2) Query DB for record(s), store returned rows in a recordset
3) Check that recordset has rows
4) Write the data from the recordset to the browser (formatted in HTML).
5) Close recordset
6) Close connection to DB.

So do some research on ASP, and ADO (ADO is the technology used to connect to the DB from ASP - you do not need to purchase anything new, it's installed by default). That should keep you pretty busy. When you have specific questions about ASP code, let us know.
__________________
That which does not kill me postpones the inevitable.
Reply With Quote
  #5 (permalink)  
Old 05-18-04, 16:28
gyuan gyuan is offline
Registered User
 
Join Date: Dec 2003
Posts: 454
I think that you can get some help from the following book:

Beginning ASP Databases, by John Kauffman, Wrox
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