Hi
I've a contact page/form which generates THREE groups of check boxes.
Each check box has a unique 'value' and is 'named' one of the three group names (products, services, applications).
I'm using cdonts to email the results. I can only manage to extract the check box values from the first group of checkboxes (products) but not the others, even though my code is the same for all.
A sample of the code is bellow. I'm sure that the names are ok.
Any ideas?
Thanks
I've a contact page/form which generates THREE groups of check boxes.
Each check box has a unique 'value' and is 'named' one of the three group names (products, services, applications).
I'm using cdonts to email the results. I can only manage to extract the check box values from the first group of checkboxes (products) but not the others, even though my code is the same for all.
A sample of the code is bellow. I'm sure that the names are ok.
Code:
strbody = strbody & "<td width=""190"">Products</td>"
strbody = strbody & "<td width=""71%"">" & request.form("products") & "</td>"
strbody = strbody & "</td>"
strbody = strbody & "</tr>"
strbody = strbody & "<tr>"
strbody = strbody & "<td width=""190"">Industry Areas</td>"
strbody = strbody & "<td width=""71%"">" & request.form("applications") & "</td>"
strbody = strbody & "</td>"
Any ideas?
Thanks