After completing the master page (see Opening a detail page and passing a record ID (ASP.NET), you must find the requested record in the database and display it on the detail page. The procedure consists of defining a DataSet on the detail page to hold a single record--the record requested by the master page--and binding the DataSet columns to the page.
If one doesnt exist, select File > New > Dynamic, select an ASP.NET page format, and click Create. A blank .aspx page opens in Dreamweaver.
The simple DataSet dialog box appears. If the advanced DataSet dialog box appears instead, click Simple to switch to the simple DataSet dialog box.
The DataSet can be identical to or different from the DataSet on the master page. Usually a detail page DataSet has more columns to display more detail.
If the DataSets are different, make sure the DataSet on the detail page contains at least one column in common with the DataSet on the master page. The common column is usually the record ID column, but it can also be the join field of related tables.
To include only some of the tables columns in the DataSet, select the Selected option and select the desired columns by Control-clicking (Windows) or Command-clicking (Macintosh) them in the list.
For example, if the URL parameter contains a record ID number, select the column containing record ID numbers. In the example discussed in the previous section, the DataSet column called CODE contains the values that match the value of the URL parameter passed by the master page.
The master page uses a URL parameter to pass information to the detail page.
For example, if the URL that the master page used to open the detail page included the suffix locationDetail.aspx?recordID=CBR, then enter recordID
.
The DataSet dialog box should look as follows:
The DataSet appears in the Bindings panel.
For more information, see Making text dynamic.
The ASP.NET master/detail page set is done.
After creating master/detail pages, you can use the Server Behaviors panel (Window > Server Behaviors) to modify the various building blocks.