Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp and access forms

Status
Not open for further replies.

edgarv

MIS
Jul 25, 2003
248
US
Is there a way to go a specific record in a ms access form?
how would I go about doing that?

By this I mean: If I have a web form generated from access 2000 and I have about 1200 records. Could I put a link on another page for example put a link "375" and when you click on it it would go to the web form generated from access and show me record 375?


any help is greately appreciated
thank you
 
Did I post my question in the wrong place?
 
Maybe. What do you mean you "have a web form generated from access 2000" ???

Did you write a ASP script that reads an access database and builds HTML that displayes the data one record at a time?

Or is this some kind of wizard thing inside Access that lets you auto-magically make a web page?
 
It is a wizzard kind of thing, (you can also do it in desing view) thisis to build webpages from your tables
 
Since it is .htm then the wizard gave you a static HTML page with a copy of the data.

However, you can make your own dynamic pages using ASP, PHP, Perl, or other server side scripting technologies.

ASP will be the easiest technology to master if you already know how to program in VB/VBA/VBScript and your target web server is Microsoft IIS.
 
ok I got it.

I am not too familiar with any of those languages, still learing asp though.
Following your advice,
I created an asp document that shows me all the data I need to see. everything looks good. I created it with Dream Weaver.
The problem now is that I can only see the first record.

Is there a way to see the rest? or do I have to create a page for each one?
 
I'm not sure about the code generated by Dream Weaver but I assume it uses ADO to connect to and display values from the database.

Some questions:
* How many records are in this table?
* Will new records be added to the table?
* Do you want to display only 1 record per page or have pages more like a search engine where it shows 10 or 20 and then has links at the bottom to navigate through all the records?
* How are you sorting the records?


 
Oh sorry forgot to answer the rest of the questions
yes, there will be more recorda added,
It would be ideal to display just one record at the time and a link to the next record.
the records are stored in an access db

the link that I sent is for the form the view is exactly as the form, it only shows the records
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top