Link to home
Start Free TrialLog in
Avatar of omb
omb

asked on

Combine info from a textbox & dropdown menu

Nice easy one...

How can I combine the input from a textbox with that of a dropdown menu into a single value? For example, I've collect info from different pages using the command:
<INPUT TYPE=HIDDEN NAME="name" VALUE="<%=Request.Form("value")%>">

How can I then combine 2 of these values (one from a text box, the other from a dropdown menu) into a single value which can be displayed on screen? To display collected info, I use:
<%Response.Write(Request.Form("name")) %>

Thanks for any help on this one.
ASKER CERTIFIED SOLUTION
Avatar of pauljk
pauljk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of omb
omb

ASKER

Thanks pauljk - that was easy for you! Works just fine.

Please check out the last few comments on the following question... https://www.experts-exchange.com/jsp/qShow.jsp?ta=html&qid=10335112  and see if you can help out.

Cheers