Microsoft KB Archive/240200

From BetaArchive Wiki

Article ID: 240200

Article Last Modified on 9/28/2004



APPLIES TO

  • Microsoft FrontPage 2000 Standard Edition



This article was previously published under Q240200

SUMMARY

This article describes how to delete a record from a Microsoft Access 2000 database by using FrontPage 2000 and Active Server Pages (ASP).

back to the top

Delete a Record in a Microsoft Access Database Using ASP

To delete a record use the following steps:

  1. Start FrontPage 2000 and create a new web (on the File menu, click New and then click Web). In the Specify the location of the new web box, type http://localhost/aspsample, and click the Web site default of One Page Web.
  2. On a new page, point to Database on the Insert menu, and click Results.
  3. In step 1, click to select the Use a sample database connection (Northwind) check box, and then click Next.
  4. In step 2, select Employees as the Record Source, and then click Next.
  5. In step 3, click Next.
  6. In step 4, select List - one field per item in the Formatting list and Text fields in the List options list, and then click Next.
  7. In step 5, click Split records into groups, and type 1 in the Records per group box. Click Finish.
  8. Double-click the Submit button, and change the Value/Label field to Delete.
  9. Right-click inside the form, and click Form Properties on the menu that appears.
  10. In the Form Properties dialog box, click Send to other, and then click Options.
  11. In the Action box, type Delete.asp. Click OK twice and then save the page as Delete_Form.asp.
  12. Create a new page. (On the File menu, point to New, click Page, and click Normal Page.)
  13. On the Insert menu, point to Database, and click Results.
  14. In step 1, click the Use an existing database connection button, and then select Sample. Click Next.
  15. In step 2, click Custom query, and then click Edit. In the SQL statement window, type the following SQL code:

    DELETE DISTINCT from Employees 
    WHERE FirstName='::FirstName::'
    AND LastName='::LastName::' 
                            

    Click OK and then click Next.

  16. In step 3, click Next.
  17. In step 4, select Table - One Record Per Row and then click Next.
  18. In step 5, make sure the Add search form check box is not selected. Click Finish and then save the page as Delete.asp.

NOTE: The field names FirstName and LastName represent the fields used in the Aspsamp.mdb file. The fields ::FirstName:: and ::LastName:: represent the one-line text box form fields.


back to the top


REFERENCES

To use the ASP features in FrontPage 2000, you must install the components listed in the following Microsoft Knowledge Base article:

312638 Description of the items that are required to use Active Server Pages (ASP) in FrontPage 2000




back to the top


Additional query words: front page fp2000

Keywords: kbhowtomaster kbdatabase kbquery kbasp KB240200