Thank you for your feedback. However, it doesn't work. In fact it doesn't recognize the get.asp (page with the email instructions).
Here's the section of my form plus the asp code that gets the information from the form:
HTML FORM section:
************************************************** **
<select name="t1">
<option value="information type A" selected>type A</option>
<option value="information type B">type B</option>
<option value="information type C">type C</option>
<option value="information type D">type D</option>
<option value="information type E">type E</option>
<option value="Other">Other</option>
</select>
************************************************** **
Here's the code in get.asp:
************************************************** ***
SELECT Case t1
CASE "information type A"
ObjMail.To = "
[email protected]"
CASE "information type B"
ObjMail.To = "
[email protected]"
CASE "information type C"
ObjMail.To = "
[email protected]"
CASE "information type D"
ObjMail.To = "
[email protected]"
CASE "information type E"
ObjMail.To = "
[email protected]"
End SELECT
************************************************** **
When completing the form (with a valid ObjMail.From value), and submitting it, get.asp cannot be displayed: HTTP 500 - Internal server error
What am I missing??
Thanks
nancy
************************************************** ***