Heeep voila mon probleme :
j'aimerais afficher les checkbox selectionner par une requète : 4 par ligne...

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
<table cellspacing="1" cellpadding="1" border="0" align="center" width="100%">
<tr><td colspan="4" bgcolor="#C0C0C0">A afficher dans la(les) filière(s) :</td></tr>
 
<tr>
	<%Do while not rst.eof%>
	<td width="25%" bgcolor="#C0C0C0"><input type="checkbox" name="<%=rst("NomCourtFiliereF")%>" value="True" ><%=rst("NomCourtFiliereF")%></td>
	<%if(nb mod 4) = 0 Then%>
		</tr><tr>
	<%end if%>
	<%rst.MoveNext%>
	<%Loop%>
</tr>
</table>
nb = nbre d'enregistrement total à afficher

Merci d'avance