Welcome to wet-inc

FrontPage and Expression Web Help

FrontPage Help - Expression Web Help

FrontPage Help

Home Page

About wet-inc

FrontPage Extensions

FrontPage Java

FrontPage hosting

FrontPage includes

FrontPage Banners

Change page name

dynamic web template (dwt)

FrontPage navigation

FrontPage navigation expanded

FrontPage meta tags

FrontPage form problems

Setup email links

FrontPage Dropdown box

FrontPage bookmark tutorial

Add a hot spot

Using FrontPage Tables

Tables and layout

Split or merge frontpage tables

Make a frontpage template

Save your template.

FrontPage behaviors and layers

FrontPage graphic submit buttons

Round corner boxs

Using CSS with FrontPage

Simple CSS gallery

Set up FrontPage page margins

HTML Color Table

Free FrontPage templates

FrontPage transparent images

link from a dropdown - A quick FrontPage tutorial.

Below is an example - try it!

Drop down box's are great for navigation and FrontPage comes with one already built in.

First insert a dropdown box. Insert/form/drop down box and then follow on as below. (Frontpage wil almost certainly add a submit and reset button! Just delete them)

Alternatively in FP2003 you can just place the cursor where you want it and then select jump menu from the behaviors tab. FrontPage will insert the drop down box for you.

This is the code for FP2003 - Below is the way for frontpage 2000, 2002 and most likely 98.

1. Select the drop-down box.
2. Choose Behaviours from the Format menu.
3. Click the Insert button in the Behaviours task pane, then choose Jump Menu.
4. Use the resulting Jump Menu dialog box to configure the drop-down Menu names (Choice) and Value (the location of the page) you want. For example a link reading About Us would most likely link to a file called aboutus.htm) See graphic below.

Configure a drop down menu in front page - Mini tutorial

Earlier Versions than FrontPage 2003

1.Right-click the drop-down box and choose Form Field Properties from the shortcut menu.
2. When the Drop-Down Box Properties dialog box appears, click the Add button.
3. When the Add Choice dialog box appears: In the Choice box, enter the title text you want the visitors to see.
Select the Specify Value check box, then enter the URL in the accompanying text box.
Set Initial State to Not Selected.
Click OK.

4. Repeat steps 2 and 3 for each hyperlink choice.
5. Click OK to close the Drop-Down Box Properties dialog box .
6. With the drop-down box still selected, switch to HTML view. The HTML for the drop-down box should look like
this:
<select size="1" name="D1">
<option value="http://www.wet-inc.co.uk">Google</option>
<option value="http://www.yahoo.com">Yahoo</option>
</select>
7. Add an onchange= attribute to the <select> tag as shown below:
<select size="1" name="D1" onchange="window.location.href=this.value;">