Vince
|
| Posted: 07/31/2002, 5:46 AM |
|
Hi,
I want to include a drop-down redirection menu on my page. Drop down box is populated by the database. When the user makes a selection, he his automatically taken to the page of his choice. Some javascript involved I guess. I had a look at the article on dependent listboxes but that does not really help.
Any support will be greatly appreciated!
Vincent
|
|
|
 |
Alex Alexapolsky
|
| Posted: 07/31/2002, 5:51 AM |
|
That's pure javascript programming.
E.g. this could be put into Form Footer
<script>
function myredirect() {
window.location = "some_file.asp";
}
document.ListBoxName.onchange = myredirect;
</script>
|
|
|
 |
|