Use JavaScript.
 
Here is an example of a dropdown list that calls a javascript function:
 
<form name="frmRedirectCustomer">
<select name="GoToAccount" onChange="RedirectCustomer();">
 <option value="0">Select a website</option>
 <option value="1">-----------------</option>
 <option value="2">MSN</option>
 <option value="3">Yahoo</option>
</select>
</form>
 
And here is the javascript function that gets called when the user selects a 
website:
 
function RedirectCustomer() { 
if(document.frmRedirectCustomer.GoToAccount.value>1){ 
if(document.frmRedirectCustomer.GoToAccount.value=="2"){ 
window.location=('http://www.msn.com'); 
}else if(document.frmRedirectCustomer.GoToAccount.value=="3"){ 
window.location=('http://www.yahoo.com'); } 
} 
}
 
Whatch for wrapping!
 
Mark


"Gruber, Jack W SMSGT NGCA" <[EMAIL PROTECTED]> wrote:
Greetings:
    I'm looking for a simplified way to navigate automatically to different
screens based on a users choice from a drop-down box.
Designing in FrontPage 2000 on an IIS 5.0 server.


SMSgt. Jack Gruber
HQ California Air Guard
DSN 466-3560
916-854-3560

"If you come to a fork in the road, take it"
Yogi Berra



[Non-text portions of this message have been removed]


Yahoo! Groups SponsorADVERTISEMENT


---------------------------------
Yahoo! Groups Links

   To visit your group on the web, go to:
http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/
  
   To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
  
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 



[Non-text portions of this message have been removed]



------------------------ Yahoo! Groups Sponsor --------------------~--> 
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/saFolB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to