|
Action:
|
MSDBQuery - Specifies the table in the ODBC data source we wish to access and display fields from. Note: Detail Pages are often made into “Update Pages,” used for Adding, Modifying or Deleting a record. In all cases but Adding a record, the customer has come to this detail page from a list page. Therefore the SQL SELECT statement in this MSDBQuery is ignored in favor of the record passed from the List page. In the case of Adding a record, this MSDBQuery specifies which table will get this new record. MSDBUpdate - Only used when the page is an “Update Page.” The key field property is required if you are going to Modifying or Delete from a database. This key field will not change it’s value and is unique to each record, which allows ASP to differentiate one similar record from another.
|
|
Display:
|
MSDBDynaField - Basically a HTML text field that is directly linked to a field in the database table. On an “Update Page” we would like this MSDBDynaField to be empty. Therefore the "Use Query" property needs to be "false". In the case of a detail page that displays, modifies or deletes a record, this field should be "true".
|