Hi,
I want to do a count but the name of the input box has to names how do I put this name into the request.form. I put ??? were I am having the problems.
response.Write "<input type=checkbox name=" & Strtype & "." & strquest & " value="&Strvalue& "> " & oRSc("Selection") & "<br>"
aSelected = split(request.form(????),",")
total = 0
for i = 0 to ubound(aSelected)
response.write(aSelected(i))
if IsNumeric(aSelected(i)) then
total = total + CDbl(aSelected(i))
end if
Thanks JJ
I want to do a count but the name of the input box has to names how do I put this name into the request.form. I put ??? were I am having the problems.
response.Write "<input type=checkbox name=" & Strtype & "." & strquest & " value="&Strvalue& "> " & oRSc("Selection") & "<br>"
aSelected = split(request.form(????),",")
total = 0
for i = 0 to ubound(aSelected)
response.write(aSelected(i))
if IsNumeric(aSelected(i)) then
total = total + CDbl(aSelected(i))
end if
Thanks JJ