A Master-Detail Page set is a web application which presents information extracted from a database in two formats. The master page displays a list of all records retrieved as a result of a database search. A detail page links from the master page and usually provides more specific details about an item selected in the master page. You can complete this tutorial in following server models—ColdFusion, ASP, and JSP.
Create a master-detail page setA good starting point for developing a database application is to display a
list of the records stored in a database. The master-detail page set you develop
will list the company’s car rental locations, as well as detailed information
about each location, such as the telephone number and address. All of the information
about Global’s locations is stored in a Microsoft Access database file, global.mdb.
If you followed the instructions in the appropriate Setup chapter in this guide,
you should already have a connection to this database. The web application pages
will not update without a connection to this database. Let’s start by selecting
a page to work in. Do one of the following to open the Site panel: In the Files
panel group, click the expander arrow, then select the Site tab if it is not
already selected. Choose Window > Site. Press F8. In the Sites pop-up menu,
select the GlobalCar site you defined.
In the Site panel, double-click the locationMaster file to open it.
The document opens in the Document window. You will edit the partially completed
page.
1 2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 422