I am creating a dynamic driven survey where the a user can create qustions and is then populated on a local web page for others to cast votes. I have the back end working, my problem is when I try to send form values to the next page to be processed.
i.e
<%
do until rs.eof
%>
<input type="checkbox" name="Answer" Value="<%=rs"value")%>>
<%
rs.movenext
loop
%>
on the processing Page I request the value of Answer it is returned with both seperated by a comma e.g. 14,15
Answer = request.form("Answer")
I need both values individually but not sure how to go about it to increment the count in the database.
14 represents one record and 15 represents another
any Ideas would be greatly appreciated
Thanks
i.e
<%
do until rs.eof
%>
<input type="checkbox" name="Answer" Value="<%=rs"value")%>>
<%
rs.movenext
loop
%>
on the processing Page I request the value of Answer it is returned with both seperated by a comma e.g. 14,15
Answer = request.form("Answer")
I need both values individually but not sure how to go about it to increment the count in the database.
14 represents one record and 15 represents another
any Ideas would be greatly appreciated
Thanks