TP1_ASP/boutique/linkbutton.aspx
2019-11-14 09:42:27 +01:00

27 lines
1.1 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="linkbutton.aspx.cs" Inherits="boutique.linkbutton" %>
<!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>
<body>
<form id="form1" runat="server">
<div>
<asp:LinkButton ID="LinkButtonPromo" runat="server" OnClick="LinkButtonPromo_Click">Achat dun produit en promotion</asp:LinkButton>
<br />
<br />
<asp:LinkButton ID="LinkButtonHorsPromo" runat="server" OnClick="LinkButtonHorsPromo_Click">Achat dun produit hors promotion</asp:LinkButton>
<br />
<br />
<asp:LinkButton ID="LinkButtonProduitNouveau" runat="server" OnClick="LinkButtonProduitNouveau_Click">Achat dun produit nouveau</asp:LinkButton>
<br />
<br />
<asp:Label ID="LabelTypeProduit" runat="server" Text="Sélectionner un type de produit"></asp:Label>
</div>
</form>
</body>
</html>