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
| <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Page sans titre</title>
<style type="text/css">
.style1
{
width: 100%;
}
.style2
{
height: 535px;
}
.style3
{
height: 535px;
width: 153px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<table class="style1">
<tr>
<td class="style3" bgcolor="#0066CC" onclick = "afficher()">
<asp:ListBox ID="ListBox1" runat="server" Height="168px" Width="150px">
<asp:ListItem>Objet1</asp:ListItem>
<asp:ListItem>Objet2</asp:ListItem>
<asp:ListItem>Objet3</asp:ListItem>
<asp:ListItem>Objet4</asp:ListItem>
<asp:ListItem>Objet5</asp:ListItem>
<asp:ListItem>Objet6</asp:ListItem>
<asp:ListItem>Objet7</asp:ListItem>
<asp:ListItem>Objet8</asp:ListItem>
<asp:ListItem>Objet9</asp:ListItem>
<asp:ListItem>Objet10</asp:ListItem>
</asp:ListBox>
</td>
<td class="style2" valign="top">
</td>
</tr>
</table>
</form>
</body>
</html> |
Partager