I am trying to put in pulldown menus in FrontPage 2000. Is this possible. I
can do the pulldown menus, but they don't link to other pages on the website.
Is there an easy way to do this, or do I have to buy extra software?

You can email me directly at jlatou2002@msn.com or post here.

Re: Pull down Menus in 2000 by Steve

Steve
Thu Feb 15 20:11:54 CST 2007

If you mean a drop down select menu, here's an example:

<form>
<p align="center"><b>Select a site </b>
<select id="Choice" style="color: #0000FF" size="1" name="mySelect">
<option value="">Select one</option>
<option value="http://altavista.com">AltaVista</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.google.com">Google</option>
</select>
<input type="button" value="Go" onclick="window.open(Choice.options[Choice.selectedIndex].value)">
</p>
</form >

Add options as needed and edit the links to point to pages in your web.


--
Steve Easton


"JamesL" <jalatour@telus.net> wrote in message news:5DA5E97A-2F35-44FD-B207-05917D558BE1@microsoft.com...
>I am trying to put in pulldown menus in FrontPage 2000. Is this possible. I
> can do the pulldown menus, but they don't link to other pages on the website.
> Is there an easy way to do this, or do I have to buy extra software?
>
> You can email me directly at jlatou2002@msn.com or post here.



Re: Pull down Menus in 2000 by jalatour

jalatour
Sun Feb 18 11:26:10 CST 2007

Thanks Steve. Can you possibly tell me how to set that up in FrontPage 2000.
I am an amateur. Although I do have tech training...so not too dense (lol)

You can respond or add me to msgr at jlatour2002@msn.com

"Steve Easton" wrote:

> If you mean a drop down select menu, here's an example:
>
> <form>
> <p align="center"><b>Select a site </b>
> <select id="Choice" style="color: #0000FF" size="1" name="mySelect">
> <option value="">Select one</option>
> <option value="http://altavista.com">AltaVista</option>
> <option value="http://www.yahoo.com">Yahoo</option>
> <option value="http://www.google.com">Google</option>
> </select>
> <input type="button" value="Go" onclick="window.open(Choice.options[Choice.selectedIndex].value)">
> </p>
> </form >
>
> Add options as needed and edit the links to point to pages in your web.
>
>
> --
> Steve Easton
>
>
> "JamesL" <jalatour@telus.net> wrote in message news:5DA5E97A-2F35-44FD-B207-05917D558BE1@microsoft.com...
> >I am trying to put in pulldown menus in FrontPage 2000. Is this possible. I
> > can do the pulldown menus, but they don't link to other pages on the website.
> > Is there an easy way to do this, or do I have to buy extra software?
> >
> > You can email me directly at jlatou2002@msn.com or post here.
>
>
>

Re: Pull down Menus in 2000 by Steve

Steve
Sun Feb 18 15:19:37 CST 2007

Well, copy and paste my example onto a page in code view.
Then switch to design view, and right click the select box.
Select "Form Properties" and you should get the properties dialog where you can add / edit the options.

--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
Coming Soon: Function5 Auto Refresh

"JamesL" <jalatour@telus.net> wrote in message news:D13FC179-8CC2-4EED-9990-7507691CDC42@microsoft.com...
> Thanks Steve. Can you possibly tell me how to set that up in FrontPage 2000.
> I am an amateur. Although I do have tech training...so not too dense (lol)
>
> You can respond or add me to msgr at jlatour2002@msn.com
>
> "Steve Easton" wrote:
>
>> If you mean a drop down select menu, here's an example:
>>
>> <form>
>> <p align="center"><b>Select a site </b>
>> <select id="Choice" style="color: #0000FF" size="1" name="mySelect">
>> <option value="">Select one</option>
>> <option value="http://altavista.com">AltaVista</option>
>> <option value="http://www.yahoo.com">Yahoo</option>
>> <option value="http://www.google.com">Google</option>
>> </select>
>> <input type="button" value="Go" onclick="window.open(Choice.options[Choice.selectedIndex].value)">
>> </p>
>> </form >
>>
>> Add options as needed and edit the links to point to pages in your web.
>>
>>
>> --
>> Steve Easton
>>
>>
>> "JamesL" <jalatour@telus.net> wrote in message news:5DA5E97A-2F35-44FD-B207-05917D558BE1@microsoft.com...
>> >I am trying to put in pulldown menus in FrontPage 2000. Is this possible. I
>> > can do the pulldown menus, but they don't link to other pages on the website.
>> > Is there an easy way to do this, or do I have to buy extra software?
>> >
>> > You can email me directly at jlatou2002@msn.com or post here.
>>
>>
>>



Re: Pull down Menus in 2000 by Thomas

Thomas
Mon Feb 19 07:40:36 CST 2007

Notepad first, then into HTML View.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


"Steve Easton" <admin@95isalive.com> wrote in message news:uvRjAK6UHHA.3500@TK2MSFTNGP05.phx.gbl...
> Well, copy and paste my example onto a page in code view.
> Then switch to design view, and right click the select box.
> Select "Form Properties" and you should get the properties dialog where you can add / edit the
> options.
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> FP Cleaner
> http://www.95isalive.com/fixes/fpclean.htm
> Hit Me FP
> http://www.95isalive.com/fixes/HitMeFP.htm
> Coming Soon: Function5 Auto Refresh
>
> "JamesL" <jalatour@telus.net> wrote in message
> news:D13FC179-8CC2-4EED-9990-7507691CDC42@microsoft.com...
>> Thanks Steve. Can you possibly tell me how to set that up in FrontPage 2000.
>> I am an amateur. Although I do have tech training...so not too dense (lol)
>>
>> You can respond or add me to msgr at jlatour2002@msn.com
>>
>> "Steve Easton" wrote:
>>
>>> If you mean a drop down select menu, here's an example:
>>>
>>> <form>
>>> <p align="center"><b>Select a site </b>
>>> <select id="Choice" style="color: #0000FF" size="1" name="mySelect">
>>> <option value="">Select one</option>
>>> <option value="http://altavista.com">AltaVista</option>
>>> <option value="http://www.yahoo.com">Yahoo</option>
>>> <option value="http://www.google.com">Google</option>
>>> </select>
>>> <input type="button" value="Go"
>>> onclick="window.open(Choice.options[Choice.selectedIndex].value)">
>>> </p>
>>> </form >
>>>
>>> Add options as needed and edit the links to point to pages in your web.
>>>
>>>
>>> --
>>> Steve Easton
>>>
>>>
>>> "JamesL" <jalatour@telus.net> wrote in message
>>> news:5DA5E97A-2F35-44FD-B207-05917D558BE1@microsoft.com...
>>> >I am trying to put in pulldown menus in FrontPage 2000. Is this possible. I
>>> > can do the pulldown menus, but they don't link to other pages on the website.
>>> > Is there an easy way to do this, or do I have to buy extra software?
>>> >
>>> > You can email me directly at jlatou2002@msn.com or post here.
>>>
>>>
>>>
>
>