Hi,

I have a listbox and submit button on my asp page now,
I want to go to 1 of 2 pages depending on what the user clicked in the listbox(drop down menu).


My listbox's name is lstchoice

I tried something like this, but it does not work...

<%if lstchoice = "MONDAY" then%>
<form method="post" action="monday.asp">
<%else%>
<form method="post" action="other.asp">
<%end if%>


ie. when the user clicks SUBMIT the correct page is opened.

Am I totally of the track here???

PLEASE - any help.