Posts

Showing posts with the label HTML

Java Script - How to Retrieve Checkbox Values

1] FormA.asp <html> <head> <title>How to Retrieve Checkbox Value in Java Script</title> </head> <body> <form action="Test.asp" name="frmFormA" method="post"> <TABLE cellSpacing=5>      <tr>  <td bgcolor="#eeeeee" id = "tdManage" >   <div id="DivManage" >    <Strong>     <font face="Garamond"> I hereby certify that: <BR> (Please check all that apply) <BR> <input type="checkbox" value="1" <%=Q1Val%> name="cbSelect1"> (1) Question1; <BR> <input type="checkbox" value="2" <%=Q2Val%> name="cbSelect2"> (2) Question2;<BR> <input type="checkbox" value="3" <%=Q3Val%> name="cbSelect3"> (3) Question3.<BR>     </font >    </Strong>   </div>  </td>  </tr>  <tr>   ...