Sridhar_Rao
In the zone
I have a html form, where user makes a choice using drop-down menu. There are other elements in the form too. I use a vbscript to send the element values to my email.
This works when a predetermined value is entered. for eg. value="this.htm"
How do I place the value of input name (in red colour), depending on what the user chooses? What is the code?
Code:
<form name="test" method="post" action="cdosys.asp">
<input name="_recipients" type="hidden" value="mymail@myurl.com" />
<input name="_requiredFields" type="hidden" value="name,email,country" />
<input name="_replyToField" type="hidden" value="email" />
<input name="_redirect" type="hidden" [COLOR=Red]value=""[/COLOR] />
How do I place the value of input name (in red colour), depending on what the user chooses? What is the code?