1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| <from>
<table align="center">
<tr valign="baseline">
<td nowrap align="right">Groupe:</td>
<td><select name="groupe">
<%
while (Recordset1_hasData) {
%>
<option value="<%=((Recordset1.getObject("etat")!=null)?Recordset1.getObject("etat"):"")%>"><%=((Recordset1.getObject("etat")!=null)?Recordset1.getObject("etat"):"")%></option>
<%
Recordset1_hasData = Recordset1.next();
}
Recordset1.close();
Recordset1 = StatementRecordset1.executeQuery();
Recordset1_hasData = Recordset1.next();
Recordset1_isEmpty = !Recordset1_hasData;
%>
</select></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Date:</td>
<td><input type="text" name="date" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Heure_debut:</td>
<td><input type="text" name="heure_debut" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Heure_fin:</td>
<td><input type="text" name="heure_fin" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="rechercher"></td>
</tr>
</table>
</form> |