You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
5 years ago
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="produits.aspx.cs" Inherits="boutique.produits" %>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head runat="server">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
|
<title></title>
|
||
|
<style type="text/css">
|
||
|
.auto-style1 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form id="form1" runat="server">
|
||
|
<div>
|
||
|
</div>
|
||
|
<div class="auto-style1">
|
||
|
Liste des produits par catégorie<br />
|
||
|
<br />
|
||
|
<asp:DropDownList ID="DropDownListeCategories" runat="server">
|
||
|
<asp:ListItem Value="Ecrans"></asp:ListItem>
|
||
|
<asp:ListItem Value="Imprimantes"></asp:ListItem>
|
||
|
</asp:DropDownList>
|
||
|
<br />
|
||
|
<br />
|
||
|
<asp:Button ID="bouttonchoisir" runat="server" OnClick="Button1_Click" Text="Choisir" />
|
||
|
<br />
|
||
|
<br />
|
||
|
<asp:Label ID="labellisteproduits" runat="server" Text="veuillez choisir une catégorie"></asp:Label>
|
||
|
</div>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|