Bonjour,

à la fin de ces lignes :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
            Telerik.Web.UI.RadComboBox CBX_Domaine = new RadComboBox();
            CBX_Domaine.ID = "CBX_Domaine";
            CBX_Domaine.Visible = true;
            List<Domaine> domaine = DomaineGestion.Liste();
            CBX_Domaine.DataSource = domaine;
            CBX_Domaine.DataTextField = "libelle";
            CBX_Domaine.DataValueField = "id";
            CBX_Domaine.DataBind();
            CBX_Domaine.Items.Insert(0, new Telerik.Web.UI.RadComboBoxItem("Tous", ""));
            CBX_Domaine.Attributes["runat"] = "server";
            CBX_Domaine.AutoPostBack = true;
            //CBX_Domaine.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(CBX_Domaine_SelectedIndexChanged);
            this.Controls.Add(CBX_Domaine);
            Control c = this.FindControl("CBX_Domaine");
c est null...

Quelqu'un pourrait-il m'expliquer pourquoi, s'il-vous-plait ? Merci !