After the search page passes a URL parameter to the update page (see Opening the update page and passing the record ID (ASP.NET)), the update page must read the parameter, retrieve the record from the database table, and store it temporarily in a DataSet.
The page will become your update page.
If the advanced dialog box appears, click the Simple button to open the simple dialog box.
This kind of filter creates a DataSet that contains only one record--the record with an ID that matches the value of the URL parameter. For example, if your key column contains record ID information and is called CODE, and if the search page passes the corresponding record ID information in the URL parameter called recordID
, heres how your Filter area should look:
When the user selects a record on the search page, the update page generates a DataSet containing only the selected record.
After modifying the update page to retrieve a record from the database and store it in a DataSet, you must add a form to let users modify the record data. You must also add the logic needed to update the database. You can accomplish these tasks in one operation or block by block. See Completing the update page in one operation (ASP.NET) or Completing the update page block by block (ASP.NET).