|
Deleting records without using a confirmation page
In some situations, you might want the web application to delete a record as soon as the user clicks a Delete link in a list of records. An intervening page does not appear asking the user to confirm the deletion.
This kind of functionality is usually handled by placing the record deletion logic on a page that's not displayed. The first page passes a record ID to the logic page, where the logic deletes the indicated record and immediately redirects the user to another pagetypically the first page.
Building this kind of functionality in Dreamweaver MX involves the following steps:
The following sections describe each step in detail.
|