You can add a server behavior that finds a specific record in a recordset so that you can display the record data on the page. The server behavior is only available when using the ASP or JSP server models.
A record ID contained in a URL parameter passed by another page to the current page. You can create URL parameters on the other page with HTML hyperlinks or with an HTML form. For more information, see Collecting data submitted by users.
A recordset defined for the current page. The server behavior extracts the record details from this recordset. For instructions, see Define a recordset without writing SQL or Define an advanced recordset by writing SQL.
Recordset columns bound to the page. The specific record must be displayed on the page. For more information, see Make text dynamic.
For example, if the other page passes a record ID number, select the column containing record ID numbers.
For example, if the URL the other page used to open the detail page is id=43, enter id in the Matches URL Parameter box.
The next time the page is requested by a browser, the server behavior will read the record ID in the URL parameter passed by the other page and move to the specified record in the recordset.