hi,
this one is important folks. my semister depends on it. Its an ASP project with 3 pages only, it is supose to extract information of a database. its product information. the database is made in ACESS
Page One :- the User selects check boxes
Page Two :- User chooses a radio button related to the selected check boxes (The users are presented with the names of the checkbox items)
Page Three :- The correct data from the database is neatly displayed.
I wish I dint have to do this. But my proff. is a jerk! and i mean that ! He is what we call a Certified Jerk!
guys if any one of you have any information and clues. please do reply back…
Thank you
Seems fairly straight forward to me. Create an Access database with three tables of data as described. Based upon which of three radio buttons is selected, display the data from the appropriate table.
On the display page create three recordsets, one for each table, then display only the data from the one that matches the radio button selected by the user.
I’ve read the course synopsis, and if the Prof has covered the material listed you should have all the ASP tools necessary to complete the project fairly easily. I’m not sure when this project was assigned, but I think maybe you should have gone to the Prof for help some time ago.
Another option, instead of creating recordsets, is to create three sections of code to display the contents of each table (this was covered earlier than the material on recordsets). Start each section with a simple IF clause that compares the value from the radio button to the one that matches that section of code. Since there are only three possible values, one and only one section of code will be executed.