FP2000: How to Return a List of Records as Hyperlinks Using ASP
ID: Q205980
|
The information in this article applies to:
SUMMARY
This article describes how to return the results from a query as a
hyperlink using FrontPage and Active Server Pages (ASP).
MORE INFORMATION
Getting Ready to Use the ASP Features in FrontPage
Before you can use the ASP features in FrontPage, you must install
the following components:
- A 32-bit ODBC driver.
- One of the following servers:
- Microsoft Internet Information Server (IIS) 2.0, 3.0, or 4.0 for Microsoft Windows NT Server.
- Microsoft Peer Web Services for Microsoft Windows NT Workstation.
- Microsoft Personal Web Server for Microsoft Windows 95/98.
- An ASP engine on the IIS derivative Web server.
- FrontPage Server Extensions.
Querying Information from Microsoft Access Database Using ASP
To format results of a query as a hyperlink, follow these steps:
- Start Microsoft Access 2000 and follow these steps:
- In the Microsoft Access dialog box, click Blank Database and click OK.
- In the File name box, type Asplink.mdb and click Create.
- Click the Tables tab. Double-click Create Table in Design View.
- In the Field Name box, type Hyperlink.
- On the View menu, click Datasheet View.
- When you are prompted to save, click Yes, name the table Hyperlink, and then click OK.
- If you are asked to create a primary key, click Yes.
- In the Hyperlink box, type the following record into the database
<a href="hyperlink">TextToDisplay</a>
where "hyperlink" is the URL this record will link to and
TextToDisplay is the display text for the record. For example, if you want to link to the Microsoft Home Page, you can type the following:
<a href="http://www.microsoft.com">Microsoft</a>
- On the File menu, click Exit.
- Start FrontPage and create a new Web.
- On the File menu, point to New, and click Web.
- Click One Page Web.
- In the "Please specify a location of the new web" box, type the following:
http://localhost/ASPLink
- Click OK
- Import the database into the current web.
- On the File menu, click Import.
- Click Add File.
- Select the asplink.mdb file from the file list, and click Open
- Click OK.
- When you are prompted to create a new database connection, type ASPLink for the name, and click Yes.
- Click Yes again.
- In FrontPage, create the ASP page.
- On the View menu, click Page.
- On the File menu, point to New, and then click the Page.
- Double-click Normal Page.
- On the Insert menu, point to Database, and click Results.
- In Step One of the Database Results Wizard, click to select "Use an existing database connection," and select ASPLink from the list.
- Click Next.
- Select the Hyperlink table from the Record Source list, and click Next.
- Click Next Twice, then click Finish.
- Right Click the <<Hyperlink>> column, and select Database Column Value Properties.
- Click to select the "Column value contains HTML" check box, and click OK.
- Save the Page.
- On the File Menu, click Preview in Browser.
- Click Microsoft Internet Explorer 5.0, and click Preview
Additional query words:
asp iis fpodbc query table list hyperlink multiple fields field database front page
Keywords : kbdta fphtml fpodbc fpiis kbDatabase kbInternet kbODBC
Version : WINDOWS:
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: July 1, 1999