Tile: How to create and modify a redirection drop-down list box in FrontPage
2002

http://support.microsoft.com/kb/310713/en-us

The above is the link to that help page I'm trying to get help from. I have
followed the instructions as outlined however when I go to preview and then
click the drop down menu and select MSN home page for eg, instead of being
redirected to that page I get a script error message. Can someone tell me if
its me or Microsofts example code. And if its Mircrosoft's example how do I
find a solution to my dilema.

Re: Mircrosofts menu redirector example does not work or is it me. by Stefan

Stefan
Fri Feb 17 03:47:18 CST 2006

Make sure you have copied the script to Notepad before you copied the script to your page
- then save the page and use File Preview in browser

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


"MyCandy" <MyCandy@discussions.microsoft.com> wrote in message news:80B7E983-EA82-49CB-AB58-B100DD658099@microsoft.com...
| Tile: How to create and modify a redirection drop-down list box in FrontPage
| 2002
|
| http://support.microsoft.com/kb/310713/en-us
|
| The above is the link to that help page I'm trying to get help from. I have
| followed the instructions as outlined however when I go to preview and then
| click the drop down menu and select MSN home page for eg, instead of being
| redirected to that page I get a script error message. Can someone tell me if
| its me or Microsofts example code. And if its Mircrosoft's example how do I
| find a solution to my dilema.



Re: Mircrosofts menu redirector example does not work or is it me. by MyCandy

MyCandy
Mon Feb 20 03:31:27 CST 2006

Thank you Stefan - However!

I have done that, over and over again and still I get an error message. Is
there a problem with the code or could it be my computer? Could you try
copying and pasting it then previewing it. If it works for you then I know
something is wrong on my side. What that is though beats the hell out of me.
MyCandy

"Stefan B Rusynko" wrote:

> Make sure you have copied the script to Notepad before you copied the script to your page
> - then save the page and use File Preview in browser
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
> _____________________________________________
>
>
> "MyCandy" <MyCandy@discussions.microsoft.com> wrote in message news:80B7E983-EA82-49CB-AB58-B100DD658099@microsoft.com...
> | Tile: How to create and modify a redirection drop-down list box in FrontPage
> | 2002
> |
> | http://support.microsoft.com/kb/310713/en-us
> |
> | The above is the link to that help page I'm trying to get help from. I have
> | followed the instructions as outlined however when I go to preview and then
> | click the drop down menu and select MSN home page for eg, instead of being
> | redirected to that page I get a script error message. Can someone tell me if
> | its me or Microsofts example code. And if its Mircrosoft's example how do I
> | find a solution to my dilema.
>
>
>

Re: Mircrosofts menu redirector example does not work or is it me. by Stefan

Stefan
Mon Feb 20 03:49:45 CST 2006

No the code is correct if you copied it all inside of your body tags in code view
- I just did w/ any problems

Post your code
What specific error message are you getting
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


"MyCandy" <MyCandy@discussions.microsoft.com> wrote in message news:F3D2F16D-935A-43CC-829E-FBEBEE879CA2@microsoft.com...
| Thank you Stefan - However!
|
| I have done that, over and over again and still I get an error message. Is
| there a problem with the code or could it be my computer? Could you try
| copying and pasting it then previewing it. If it works for you then I know
| something is wrong on my side. What that is though beats the hell out of me.
| MyCandy
|
| "Stefan B Rusynko" wrote:
|
| > Make sure you have copied the script to Notepad before you copied the script to your page
| > - then save the page and use File Preview in browser
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| > _____________________________________________
| >
| >
| > "MyCandy" <MyCandy@discussions.microsoft.com> wrote in message news:80B7E983-EA82-49CB-AB58-B100DD658099@microsoft.com...
| > | Tile: How to create and modify a redirection drop-down list box in FrontPage
| > | 2002
| > |
| > | http://support.microsoft.com/kb/310713/en-us
| > |
| > | The above is the link to that help page I'm trying to get help from. I have
| > | followed the instructions as outlined however when I go to preview and then
| > | click the drop down menu and select MSN home page for eg, instead of being
| > | redirected to that page I get a script error message. Can someone tell me if
| > | its me or Microsofts example code. And if its Mircrosoft's example how do I
| > | find a solution to my dilema.
| >
| >
| >



Re: Mircrosofts menu redirector example does not work or is it me. by Ronx

Ronx
Mon Feb 20 04:06:55 CST 2006

No problems with the code as written.
See www.rxs-enterprises.org/tests/pages/drop_down_test.htm

However, the code will give problems to users who use a keyboard,
rather than a mouse.
Add a submit button and move the
onchange="gotoPage(this.selectedIndex);"
from the select tag to the submit button, and change it to
onclick="gotoPage(this.selectedIndex);"

To do this, change </form> to

<input type="submit" value="Go"
onclick="gotoPage(this.selectedIndex);">
</form>

and delete onchange="gotoPage(this.selectedIndex);"
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/

"MyCandy" <MyCandy@discussions.microsoft.com> wrote in message
news:F3D2F16D-935A-43CC-829E-FBEBEE879CA2@microsoft.com...
> Thank you Stefan - However!
>
> I have done that, over and over again and still I get an error
> message. Is
> there a problem with the code or could it be my computer? Could you
> try
> copying and pasting it then previewing it. If it works for you then
> I know
> something is wrong on my side. What that is though beats the hell
> out of me.
> MyCandy
>
> "Stefan B Rusynko" wrote:
>
>> Make sure you have copied the script to Notepad before you copied
>> the script to your page
>> - then save the page and use File Preview in browser
>>
>> --
>>
>> _____________________________________________
>> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
>> "Warning - Using the F1 Key will not break anything!" (-;
>> To find the best Newsgroup for FrontPage support see:
>>
>> http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
>> _____________________________________________
>>
>>
>> "MyCandy" <MyCandy@discussions.microsoft.com> wrote in message
>> news:80B7E983-EA82-49CB-AB58-B100DD658099@microsoft.com...
>> | Tile: How to create and modify a redirection drop-down list box
>> in FrontPage
>> | 2002
>> |
>> | http://support.microsoft.com/kb/310713/en-us
>> |
>> | The above is the link to that help page I'm trying to get help
>> from. I have
>> | followed the instructions as outlined however when I go to
>> preview and then
>> | click the drop down menu and select MSN home page for eg, instead
>> of being
>> | redirected to that page I get a script error message. Can someone
>> tell me if
>> | its me or Microsofts example code. And if its Mircrosoft's
>> example how do I
>> | find a solution to my dilema.
>>
>>
>>