diff --git a/boutique/About.aspx b/boutique/About.aspx deleted file mode 100644 index e24a300..0000000 --- a/boutique/About.aspx +++ /dev/null @@ -1,7 +0,0 @@ -<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="boutique.About" %> - - -

<%: Title %>.

-

Your application description page.

-

Use this area to provide additional information.

-
diff --git a/boutique/About.aspx.designer.cs b/boutique/About.aspx.designer.cs deleted file mode 100644 index 5c984b6..0000000 --- a/boutique/About.aspx.designer.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Ce code a été généré par un outil. -// -// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si -// le code est régénéré. -// -//------------------------------------------------------------------------------ - -namespace boutique -{ - - - public partial class About - { - } -} diff --git a/boutique/bin/boutique.dll b/boutique/bin/boutique.dll index 3cfa150..5cc52da 100644 Binary files a/boutique/bin/boutique.dll and b/boutique/bin/boutique.dll differ diff --git a/boutique/bin/boutique.pdb b/boutique/bin/boutique.pdb index 051ec58..cd429c2 100644 Binary files a/boutique/bin/boutique.pdb and b/boutique/bin/boutique.pdb differ diff --git a/boutique/boutique.csproj b/boutique/boutique.csproj index 083020d..2845beb 100644 --- a/boutique/boutique.csproj +++ b/boutique/boutique.csproj @@ -133,7 +133,7 @@ - + @@ -156,6 +156,7 @@ PreserveNewest + @@ -186,6 +187,7 @@ + @@ -194,14 +196,14 @@ - - About.aspx + + + button.aspx ASPXCodeBehind - - About.aspx + + button.aspx - Contact.aspx ASPXCodeBehind @@ -219,6 +221,13 @@ Global.asax + + linkbutton.aspx + ASPXCodeBehind + + + linkbutton.aspx + produit2.aspx ASPXCodeBehind @@ -234,6 +243,13 @@ produits.aspx + + session1.aspx + ASPXCodeBehind + + + session1.aspx + Site.Master ASPXCodeBehind diff --git a/boutique/button.aspx b/boutique/button.aspx new file mode 100644 index 0000000..52c00fe --- /dev/null +++ b/boutique/button.aspx @@ -0,0 +1,29 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="button.aspx.cs" Inherits="boutique.button" %> + + + + + + + + + +
+
+ Achat d’un produit en promotion +
+
+ Achat d’un produit nouveau +
+
+ Achat d'un produit hors promotion +
+
+ Entrer un type de produit +
+
+ +
+
+ + diff --git a/boutique/button.aspx.cs b/boutique/button.aspx.cs new file mode 100644 index 0000000..6be3b8b --- /dev/null +++ b/boutique/button.aspx.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace boutique +{ + public partial class button : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void LinkButtonPromo_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonPromo.Text; + } + + protected void LinkButtonProduitNouveau_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonProduitNouveau.Text; + } + + protected void LinkButtonHorsPromotion_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonHorsPromotion.Text; + } + + protected void TextBoxTypeProduit_TextChanged(object sender, EventArgs e) + { + LabelTypeProduit.Text = LabelTypeProduit.Text + " " + TextBoxTypeProduit.Text; + } + } +} \ No newline at end of file diff --git a/boutique/button.aspx.designer.cs b/boutique/button.aspx.designer.cs new file mode 100644 index 0000000..f9efa89 --- /dev/null +++ b/boutique/button.aspx.designer.cs @@ -0,0 +1,69 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace boutique { + + + public partial class button { + + /// + /// Contrôle form1. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// Contrôle LinkButtonPromo. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonPromo; + + /// + /// Contrôle LinkButtonProduitNouveau. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonProduitNouveau; + + /// + /// Contrôle LinkButtonHorsPromotion. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonHorsPromotion; + + /// + /// Contrôle TextBoxTypeProduit. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxTypeProduit; + + /// + /// Contrôle LabelTypeProduit. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.Label LabelTypeProduit; + } +} diff --git a/boutique/linkbutton.aspx b/boutique/linkbutton.aspx new file mode 100644 index 0000000..b70075e --- /dev/null +++ b/boutique/linkbutton.aspx @@ -0,0 +1,26 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="linkbutton.aspx.cs" Inherits="boutique.linkbutton" %> + + + + + + + + + +
+
+ Achat d’un produit en promotion +
+
+ Achat d’un produit hors promotion +
+
+ Achat d’un produit nouveau +
+
+ +
+
+ + diff --git a/boutique/linkbutton.aspx.cs b/boutique/linkbutton.aspx.cs new file mode 100644 index 0000000..d0d5830 --- /dev/null +++ b/boutique/linkbutton.aspx.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace boutique +{ + public partial class linkbutton : System.Web.UI.Page + { + protected void Page_Load(object sender, EventArgs e) + { + + } + + protected void LinkButtonPromo_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonPromo.Text; + } + + protected void LinkButtonHorsPromo_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonHorsPromo.Text; + } + + protected void LinkButtonProduitNouveau_Click(object sender, EventArgs e) + { + LabelTypeProduit.Text = LinkButtonProduitNouveau.Text; + } + } +} \ No newline at end of file diff --git a/boutique/linkbutton.aspx.designer.cs b/boutique/linkbutton.aspx.designer.cs new file mode 100644 index 0000000..31efc87 --- /dev/null +++ b/boutique/linkbutton.aspx.designer.cs @@ -0,0 +1,60 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace boutique { + + + public partial class linkbutton { + + /// + /// Contrôle form1. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// Contrôle LinkButtonPromo. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonPromo; + + /// + /// Contrôle LinkButtonHorsPromo. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonHorsPromo; + + /// + /// Contrôle LinkButtonProduitNouveau. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonProduitNouveau; + + /// + /// Contrôle LabelTypeProduit. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.Label LabelTypeProduit; + } +} diff --git a/boutique/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/boutique/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index fc61225..ed0f561 100644 Binary files a/boutique/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/boutique/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/boutique/obj/Debug/boutique.csproj.CoreCompileInputs.cache b/boutique/obj/Debug/boutique.csproj.CoreCompileInputs.cache index d8f598a..7d4fd76 100644 --- a/boutique/obj/Debug/boutique.csproj.CoreCompileInputs.cache +++ b/boutique/obj/Debug/boutique.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b104c2d57e224fb17d7fffeb3c24c1659367d8eb +fc16e12974ea0de8dbd24e5985fcb97bdfd6e1dc diff --git a/boutique/obj/Debug/boutique.dll b/boutique/obj/Debug/boutique.dll index 3cfa150..5cc52da 100644 Binary files a/boutique/obj/Debug/boutique.dll and b/boutique/obj/Debug/boutique.dll differ diff --git a/boutique/obj/Debug/boutique.pdb b/boutique/obj/Debug/boutique.pdb index 051ec58..cd429c2 100644 Binary files a/boutique/obj/Debug/boutique.pdb and b/boutique/obj/Debug/boutique.pdb differ diff --git a/boutique/produit2.aspx b/boutique/produit2.aspx index cf035e7..459839d 100644 --- a/boutique/produit2.aspx +++ b/boutique/produit2.aspx @@ -9,7 +9,7 @@
- + diff --git a/boutique/produit2.aspx.cs b/boutique/produit2.aspx.cs index c6595a1..a2626b0 100644 --- a/boutique/produit2.aspx.cs +++ b/boutique/produit2.aspx.cs @@ -22,7 +22,7 @@ namespace boutique protected void ButtonChoisir_Click(object sender, EventArgs e) { //LabelAfficher.Text = TextBox.Text; - LabelAfficher.Text = RadioButtonListCategories.Text; + LabelAfficher.Text = RadioButtonListCategories.Text + " " + TextBox.Text; } } } \ No newline at end of file diff --git a/boutique/session1.aspx b/boutique/session1.aspx new file mode 100644 index 0000000..2e94357 --- /dev/null +++ b/boutique/session1.aspx @@ -0,0 +1,31 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="session1.aspx.cs" Inherits="boutique.session1" %> + + + + + + + + + + +
+ +
+
+ identifiant +
+
+ +
+
+
+
+ +
+
+ Suite +
+ + + diff --git a/boutique/About.aspx.cs b/boutique/session1.aspx.cs similarity index 50% rename from boutique/About.aspx.cs rename to boutique/session1.aspx.cs index b2e63b2..7663349 100644 --- a/boutique/About.aspx.cs +++ b/boutique/session1.aspx.cs @@ -7,11 +7,17 @@ using System.Web.UI.WebControls; namespace boutique { - public partial class About : Page + public partial class session1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } + + protected void ButtonEntrer_Click(object sender, EventArgs e) + { + Session["identifiant"] = TextBoxIdentifiant.Text; + Session["logged"]//j'en suis la + } } } \ No newline at end of file diff --git a/boutique/session1.aspx.designer.cs b/boutique/session1.aspx.designer.cs new file mode 100644 index 0000000..ce6f40a --- /dev/null +++ b/boutique/session1.aspx.designer.cs @@ -0,0 +1,69 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace boutique { + + + public partial class session1 { + + /// + /// Contrôle form1. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlForm form1; + + /// + /// Contrôle LabelIdentifiant. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.Label LabelIdentifiant; + + /// + /// Contrôle TextBoxIdentifiant. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.TextBox TextBoxIdentifiant; + + /// + /// Contrôle Label1. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.Label Label1; + + /// + /// Contrôle ButtonEntrer. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.Button ButtonEntrer; + + /// + /// Contrôle LinkButtonSuite. + /// + /// + /// Champ généré automatiquement. + /// Pour modifier, déplacez la déclaration de champ du fichier de concepteur dans le fichier code-behind. + /// + protected global::System.Web.UI.WebControls.LinkButton LinkButtonSuite; + } +}