Does anyone know how to create DTC Checkboxes on the fly. I can create regular html checkboxes on the fly. Basically what I want to do is loop through a recordset and create a checkbox based on each record in the recordset. So for instance in the case below I am using a html checkbox. But I want to do the same with a dtc checkbox.
<%do while not rcsAssociationList.EOF %>
<INPUT type="checkbox" id=chkMemberOf<%=txtAssociationListID.value%> name="chkMemberOf<%=txtAssociationListID.value%>">
<% rcsAssociationList.moveNext()%>
<% loop %>
Thanks in advance.
Bryant
<%do while not rcsAssociationList.EOF %>
<INPUT type="checkbox" id=chkMemberOf<%=txtAssociationListID.value%> name="chkMemberOf<%=txtAssociationListID.value%>">
<% rcsAssociationList.moveNext()%>
<% loop %>
Thanks in advance.
Bryant