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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| <head id="Head1" runat="server">
<link rel="stylesheet" type="text/css" href="/Stylesheet1.css" />
<title></title>
<style type="text/css">
body
{
margin: 20px 0 0; /*une marge en haut c'est quand même mieux qu'un <br />*/
width: 1000px;
text-align: center;
}
div
{
}
.horDiv
{
float: left;
border: black 1px solid;
height: 330px;
width: 33%;
}
.horDiv2
{
float: left;
}
table
{
float: left;
margin: 5px;
}
.clearDiv
{
clear: both;
}
.style1
{
width: 124px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div class="horDiv">
<h2>Niet toegelaten volle ...</h2>
<div class="horDiv2">
<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>
</div>
<div class="horDiv2">
<table border="1px">
<tr><td>truc</td></tr>
<tr><td>truc</td></tr>
</table>
<table border="1px">
<tr><td>truc</td></tr>
<tr><td>truc</td></tr>
</table>
</div>
</div>
<div class="horDiv">
<asp:DropDownList ID="cmbVehi" runat="server" Height="20px" Width="229px">
</asp:DropDownList>
<asp:DataGrid ID="DataGrid1" runat="server">
</asp:DataGrid>
<div>
<button>Apply to selection</button>
<button>Remove sel</button>
</div>
</div>
<div class="horDiv">
blabla
</div>
</div>
<div class="clearDiv">
<button>Bewaar instellingen</button>
</div>
</form>
</body>
</html> |
Partager