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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| <div class="left" style="border: thin solid #808080; height: 311px;">
<!-- les p et les ul peuvent être considérés comme des blocs -->
<p style="text-align: center">
Niet toegelaten volle dagen of uren</p>
<table style="width:100%;">
<tr>
<td align="center">Algemeen</td>
<td align="center">Specifiek</td>
</tr>
<tr>
<td>
<asp:CheckBoxList ID="chklb_ForbidDays" runat="server" Width="105px" Height="155px">
<asp:ListItem>Zondag</asp:ListItem>
<asp:ListItem>Maandag</asp:ListItem>
<asp:ListItem>Dindsdag</asp:ListItem>
<asp:ListItem>Woensdag</asp:ListItem>
<asp:ListItem>Donderdag</asp:ListItem>
<asp:ListItem>Vrijdag</asp:ListItem>
<asp:ListItem>Zaterdag</asp:ListItem>
</asp:CheckBoxList>
</td>
<td class="style1">
<asp:CheckBoxList ID="chklb_ForbidDaysSpc0" runat="server" Height="155px" Width="105px">
<asp:ListItem>Zondag</asp:ListItem>
<asp:ListItem>Maandag</asp:ListItem>
<asp:ListItem>Dindsdag</asp:ListItem>
<asp:ListItem>Woensdag</asp:ListItem>
<asp:ListItem>Donderdag</asp:ListItem>
<asp:ListItem>Vrijdag</asp:ListItem>
<asp:ListItem>Zaterdag</asp:ListItem>
</asp:CheckBoxList>
</td>
</tr>
</table>
<div style="height: 98px">
<table style="width:100%;">
<tr>
<td align="center">van</td>
<td align="center">tot</td>
<td align="center">van</td>
<td align="center">tot</td>
</tr>
<tr>
<td>
<asp:TextBox ID="txbT1a" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txbT1b" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txbT2a" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="txbT2b" runat="server" Width="90%"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox5" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="TextBox6" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="TextBox7" runat="server" Width="90%"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="TextBox8" runat="server" Width="90%"></asp:TextBox>
</td> </tr>
</table>
</div>
</div> |
Partager