added product2

master
haas flavien 5 years ago
parent 4ff03c4bdc
commit 89f740d5f5

Binary file not shown.

Binary file not shown.

@ -156,6 +156,7 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
<None Include="Scripts\jquery-3.3.1.intellisense.js" /> <None Include="Scripts\jquery-3.3.1.intellisense.js" />
<Content Include="produit2.aspx" />
<Content Include="produits.aspx" /> <Content Include="produits.aspx" />
<Content Include="Scripts\bootstrap.js" /> <Content Include="Scripts\bootstrap.js" />
<Content Include="Scripts\bootstrap.min.js" /> <Content Include="Scripts\bootstrap.min.js" />
@ -218,6 +219,13 @@
<Compile Include="Global.asax.cs"> <Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon> <DependentUpon>Global.asax</DependentUpon>
</Compile> </Compile>
<Compile Include="produit2.aspx.cs">
<DependentUpon>produit2.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="produit2.aspx.designer.cs">
<DependentUpon>produit2.aspx</DependentUpon>
</Compile>
<Compile Include="produits.aspx.cs"> <Compile Include="produits.aspx.cs">
<DependentUpon>produits.aspx</DependentUpon> <DependentUpon>produits.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>

@ -1 +1 @@
c54f4029dc52d1154fb377bbab0d46e9c3f7cac1 b104c2d57e224fb17d7fffeb3c24c1659367d8eb

Binary file not shown.

Binary file not shown.

@ -1 +1 @@
c54f4029dc52d1154fb377bbab0d46e9c3f7cac1 b104c2d57e224fb17d7fffeb3c24c1659367d8eb

@ -7,22 +7,21 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title> <title></title>
</head> </head>
<body> <body style="text-align: center">
<form id="form1" runat="server"> <form id="form1" runat="server">
<div> <asp:RadioButtonList ID="RadioButtonListCategories" runat="server" OnSelectedIndexChanged="RadioButtonListCategories_SelectedIndexChanged" style="text-align: center" Width="1030px">
</div>
<asp:RadioButtonList ID="RadioButtonListCategories" runat="server" OnSelectedIndexChanged="RadioButtonListCategories_SelectedIndexChanged">
<asp:ListItem Value="Ecrans"></asp:ListItem> <asp:ListItem Value="Ecrans"></asp:ListItem>
<asp:ListItem Value="Imprimantes"></asp:ListItem> <asp:ListItem Value="Imprimantes"></asp:ListItem>
<asp:ListItem Value="Unités centrales"></asp:ListItem> <asp:ListItem Value="Unités centrales"></asp:ListItem>
</asp:RadioButtonList> </asp:RadioButtonList>
<p>
<asp:Label ID="LabelEntrerUnTexte" runat="server" Text="Entrer un texte"></asp:Label>
</p>
<asp:Button ID="ButtonChoisir" runat="server" Text="Choisir" />
<br /> <br />
<asp:TextBox ID="TextBox" runat="server">Entrez un texte</asp:TextBox>
<br /> <br />
<asp:Label ID="Label2" runat="server" Text="LabelAfficher"></asp:Label> <br />
<asp:Button ID="ButtonChoisir" runat="server" OnClick="ButtonChoisir_Click" Text="Choisir" />
<br />
<br />
<asp:Label ID="LabelAfficher" runat="server" Text="LabelAfficher"></asp:Label>
</form> </form>
</body> </body>
</html> </html>

@ -18,5 +18,11 @@ namespace boutique
{ {
} }
protected void ButtonChoisir_Click(object sender, EventArgs e)
{
//LabelAfficher.Text = TextBox.Text;
LabelAfficher.Text = RadioButtonListCategories.Text;
}
} }
} }

@ -31,13 +31,13 @@ namespace boutique {
protected global::System.Web.UI.WebControls.RadioButtonList RadioButtonListCategories; protected global::System.Web.UI.WebControls.RadioButtonList RadioButtonListCategories;
/// <summary> /// <summary>
/// Contrôle LabelEntrerUnTexte. /// Contrôle TextBox.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Champ généré automatiquement. /// Champ généré automatiquement.
/// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind.
/// </remarks> /// </remarks>
protected global::System.Web.UI.WebControls.Label LabelEntrerUnTexte; protected global::System.Web.UI.WebControls.TextBox TextBox;
/// <summary> /// <summary>
/// Contrôle ButtonChoisir. /// Contrôle ButtonChoisir.
@ -49,12 +49,12 @@ namespace boutique {
protected global::System.Web.UI.WebControls.Button ButtonChoisir; protected global::System.Web.UI.WebControls.Button ButtonChoisir;
/// <summary> /// <summary>
/// Contrôle Label2. /// Contrôle LabelAfficher.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Champ généré automatiquement. /// Champ généré automatiquement.
/// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind.
/// </remarks> /// </remarks>
protected global::System.Web.UI.WebControls.Label Label2; protected global::System.Web.UI.WebControls.Label LabelAfficher;
} }
} }

@ -13,10 +13,5 @@ namespace boutique
{ {
} }
protected void Button1_Click(object sender, EventArgs e)
{
labellisteproduits.Text = DropDownListeCategories.Text;
}
} }
} }
Loading…
Cancel
Save