I have an HTML form that posts to an ASP engine updating an Access database.
How do I script for posting the choice made between multiple checkboxed fields to one column in my table? To be more specific:
This is how I have been updating a text field named contact to a Table column named ContactTime: My recordset is rsCropLeads:
rsCropLeads.Fields("ContactTime") = Request.Form("contact")
On my form I have 4 checkbox fields for different insurance types. I want the field/fields checked to be entered into my column named "Type" in my access DB. I tried the following, but, the field in the column remained empty when ran:
rsCropLeads.Fields("Type") = Request.Form("CropHail" + "MPCI" + "CRC" + "Unsure")
Any Ideas?
Thanks