Date:  01/19/2004 02:20:14 PM Msg ID:  001822
From:  Joe Goldsmith Thread:  001822
Subject:  Checkbox Status
Hello all. I have to build a page where each record in a lookup table is presented with a checkbox. A user would then check all records to be used. The problem I am having is finding which checkbox has been checked. Here is my code snippit.
 
*** TOP OF PAGE ***
Open the table
lnRECS = RECCOUNT()
 
<%
SELECT TABLE
IF Request.FormCount("btnchoice") > 0
   FOR I = 1 TO lnRECS
      GO I
      IF Request.Form("CHECK") = "1"
         RESPONSE.WRITE("Is Checked ")
      ENDIF
   ENDFOR
ENDIF
%>
 
<HTML>
<HEAD>
<TITLE>PBS WebCases, Copyright, All Rights Reserved</TITLE>
<LINK rel="stylesheet" href="stylesheets/pbsstyles.css" TYPE="text/css">
</HEAD>
<BODY TOPMARGIN="0" LEFTMARGIN="0" BGCOLOR="#D2E5F3">
 
<FORM NAME=getit METHOD=post ACTION="service.fwx">
    <TABLE width=100%>
     <TR>
       <TD>
          <CENTER><B>Select Service</B></CENTER>
      </TD>
      <TD>
          <CENTER><B>Category</B></CENTER>
      </TD>
     </TR>
     <%FOR I = 1 TO lnrecs
     GO I%>
     <TR>
      <TD>
       <INPUT TYPE="checkbox" NAME="check">
      </TD>
      <TD>
       <%=(SKCATEGORY)%>
      </TD>
     </TR>
     <%ENDFOR%>
     <TR>
      <TD>
       <INPUT TYPE=SUBMIT NAME=btnchoice VALUE="      Add      ">
      </TD>
     </TR>
    </TABLE>
</FORM>

Can someone please tell me the right FoxWeb construction to find each record checked please>

Joe