0

I have an issue where I need to take a value from a form page drop down. <option value="English"> (french is the other) and transfer via asp classic to an access database. In the database the Language field is a combo box with values of English and French. Basically I need the asp to turn on the right value in the combo box. What I use now for text fields is:

rsAddComments.Fields("Report_Language") =  Request.Form("Report_Language")

Please help

Jamie

0

1 Answer 1

3

Just make the drop down field values english and french unless I am missing something?

<select name="Report_Language">
 <option value="English">English</option>
 <option value="French">French</option>
</select>
Sign up to request clarification or add additional context in comments.

1 Comment

I did that already. I had a mistake the the javascript validation that stopped it from writing. But it is working now. Thank you

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.