TP1_ASP/boutique/produit2.aspx

28 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-11-04 11:38:18 +01:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="produit2.aspx.cs" Inherits="boutique.produit2" %>
<!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>
</head>
2019-11-04 11:50:51 +01:00
<body style="text-align: center">
2019-11-04 11:38:18 +01:00
<form id="form1" runat="server">
2019-11-14 09:42:27 +01:00
<asp:RadioButtonList ID="RadioButtonListCategories" runat="server" OnSelectedIndexChanged="RadioButtonListCategories_SelectedIndexChanged" style="text-align: left" align="center">
2019-11-04 11:38:18 +01:00
<asp:ListItem Value="Ecrans"></asp:ListItem>
<asp:ListItem Value="Imprimantes"></asp:ListItem>
<asp:ListItem Value="Unités centrales"></asp:ListItem>
</asp:RadioButtonList>
<br />
2019-11-04 11:50:51 +01:00
<asp:TextBox ID="TextBox" runat="server">Entrez un texte</asp:TextBox>
2019-11-04 11:38:18 +01:00
<br />
2019-11-04 11:50:51 +01:00
<br />
<asp:Button ID="ButtonChoisir" runat="server" OnClick="ButtonChoisir_Click" Text="Choisir" />
<br />
<br />
<asp:Label ID="LabelAfficher" runat="server" Text="LabelAfficher"></asp:Label>
2019-11-04 11:38:18 +01:00
</form>
</body>
</html>