In the following code :
<FORM METHOD='POST' ACTION='mypage.asp'>
<SELECT NAME="MYLIST">
<OPTION VALUE = "MYVAR">MYTEXT
</SELECT></FORM>
to retrieve MYVAR in mypage.asp, I use REQUEST.FORM("MYLIST". But how to pass on the selected text MYTEXT to mypage.asp in the same time because I need both (myvar being the item code and mytext being the item name/description.
In fact, for the moment I have used VALUE = "MYVAR" & "|" & "MYTEXT" which is a bit awkward.
Thanks
<FORM METHOD='POST' ACTION='mypage.asp'>
<SELECT NAME="MYLIST">
<OPTION VALUE = "MYVAR">MYTEXT
</SELECT></FORM>
to retrieve MYVAR in mypage.asp, I use REQUEST.FORM("MYLIST". But how to pass on the selected text MYTEXT to mypage.asp in the same time because I need both (myvar being the item code and mytext being the item name/description.
In fact, for the moment I have used VALUE = "MYVAR" & "|" & "MYTEXT" which is a bit awkward.
Thanks