Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to use multiple criteria with a drop-down menu to query a database in FrontPage


View products that this article applies to.

Summary

This article describes how to create a database results page in Microsoft FrontPage that queries a database by using multiple criteria.

↑ Back to the top


More information

Before you can use the ASP features in FrontPage, you must install the components listed in the following Microsoft Knowledge Base article:
312638 FP: What You Need to Use Active Server Pages (ASP) in FrontPage 2000

Getting started

Create a new Web using the appropriate steps for your version of FrontPage:
  • In FrontPage 2000:
    1. On the File menu, point to New, and then click Web.
    2. In the New dialog box, click Empty Web.
    3. In the Specify the location of the new Web box, type http://localhost/aspMultiSample. Or, type the address of the server that has the FrontPage Server Extensions installed and supports Active Server Pages (ASP).
    4. Click OK.
  • In FrontPage 2002:
    1. On the File menu, point to New, and then click Page or Web.
    2. In the New Page or Web task pane, click Web Site Templates.
    3. In the Web Site Templates dialog box, click Empty Web.
    4. In the Specify the location of the new Web box, type http://localhost/aspMultiSample. Or, type the address of the server that has the FrontPage Server Extensions installed and supports ASP.
    5. Click OK.

Creating the Database Results Page

  1. Insert a new page by clicking the New Page button on the Standard toolbar.
  2. On the Insert menu, point to Database, and then click Results.
  3. In the first step of the Database Results Wizard, click Use a sample database connection (Northwind) and click Next.
  4. In the Record Source list, click Employees. Click Next.
  5. Click Edit List.
  6. In the Displayed Fields dialog box, remove all fields except City and Country. Click OK.
  7. Click More Options.
  8. In the More Options dialog box, click Criteria.
  9. In the Criteria dialog box, click Add. In the Field Name list, click City. In the Comparison list, click Equals. In the Value box, type City. In the And/Or list, click And. Click OK.
  10. Click Add. In the Field Name list, click Country. In the Comparison list, click Equals. In the Value box, type Country. In the And/Or list, click And. Click OK.
  11. In the Criteria dialog box, click OK.
  12. In the More Options dialog box, click OK.
  13. Click Next.
  14. In the Choose formatting options for the records returned by the query list, click Table - one record per row. Click to select all of the check boxes and then click Next.
  15. In step five of the wizard, click Split records into groups, click to select the Add search form check box, and then click Finish.
  16. Save the page by clicking Save on the File menu. Name the file Dataresults.asp.

Adding Drop-Down Menus

  1. Add a drop-down menu for the City:
    1. In the search form, click the City text box and press DELETE.
    2. With your cursor in the table cell next to City, point to Database on the Insert menu and then click Results.
    3. In the Use an existing database connection list, click Sample, and then click Next.
    4. In the Record Source list, click Employees, and then click Next.
    5. Click Edit List.
    6. In the list of fields, remove all of the fields except City and click OK.
    7. Click Next.
    8. In the Choose formatting options for the records return by the query list, click Drop-Down List - one record per item.

      City should appear in both the Display values from this field and the Submit values from this field boxes.
    9. Click Next.
    10. Click Display all records together and click Finish.
  2. Add the drop-down menu for the Country:
    1. In the search form, click the Country text box and press DELETE.
    2. With your cursor in the table cell next to Country, point to Database on the Insert menu and then click Results.
    3. In the Use an existing database connection list, click Sample, and then click Next.
    4. In the Record Source list, click Employees, and then click Next.
    5. Click Edit List.
    6. In the list of fields, remove all of the fields except Country and click OK.
    7. Click Next.
    8. In the Choose formatting options for the records returned by the query list, click Drop-Down List - one record per item.

      Country should appear in both the Display values from this field and the Submit values from this field boxes.
    9. Click Next.
    10. Click Display all records together and click Finish.
  3. Save your page.

Eliminate Duplicate Entries

  1. Viewing the duplicates:
    1. On the File menu, click Preview in Browser.
    2. If you are prompted to select a browser, select your browser and then click Preview.
    3. When your browser opens, click the City or Country drop-down list.

      Notice that duplicate entries appear in the City and Country drop-down lists.
    4. Close the browser and switch back to FrontPage.
  2. Filter out duplicates for the City:
    1. Double-click the Database Results region for the City drop-down list.

      The Database Results Wizard starts.
    2. In the Use existing database connection list, click Sample, and then click Next.
    3. Click Next.
    4. In the Record Source list, click Employees.
    5. Select the Custom Query option.
    6. Click Edit.
    7. In the SQL statement, delete the asterisk (*) and then type DISTINCT CITY. Click OK.
    8. Click Next until you reach the end of the wizard and then click Finish.
  3. Filter out duplicates for the Country:
    1. Double-click the Database Results region for the Country drop-down list to start the Database Results Wizard.
    2. In the Use existing database connection list, click Sample, and click Next.
    3. Click Next.
    4. In the Record Source list, click Employees.
    5. Select the Custom Query option.
    6. Click Edit.
    7. In the SQL statement, delete the asterisk (*) and then type DISTINCT COUNTRY. Click OK.
    8. Click Next until you reach the end of the wizard and then click Finish.
  4. Save your page and preview it in your browser.

    Notice that the duplicate entries no longer appear in the City and Country drop down lists.

↑ Back to the top


References

For additional information about Windows Millennium (Me) and Personal Web Server, click the following article number to view the article in the Microsoft Knowledge Base:
266456 Personal Web Server Is Not Included with Windows Millennium Edition

↑ Back to the top


Keywords: KB278613, kbinfo, kbhowto, kbfunctions, kbdatabase

↑ Back to the top

Article Info
Article ID : 278613
Revision : 5
Created on : 1/29/2007
Published on : 1/29/2007
Exists online : False
Views : 311