1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
ArrayList valuesChoixVue = new ArrayList();
valuesChoixVue.Add("Ensemble");
valuesChoixVue.Add("Disponible");
valuesChoixVue.Add("En Cours");
valuesChoixVue.Add("Hors Date");
ListBoxChoixVue.DataSource = valuesChoixVue;
ListBoxChoixVue.DataBind();
}
if (ListBoxChoixVue.SelectedIndex > -1)
{
switch (ListBoxChoixVue.SelectedIndex)
{
case 0: ChargementListe("Afficher tout");
break;
case 1: ChargementListe("Disponible");
break;
case 2: ChargementListe("En Cours");
break;
case 3: ChargementListe("Hors date");
break;
default: ChargementListe("Afficher tout");
break;
}
}
} |
Partager