Bonjour,
Je me casse le dents depuis quelques jours.
je m'explique :
En gros je veux afficher un "type d'article" et au dessous la liste des articles correspondants a l'aide d'un datalist (maListePart) dont les templates sont définis dans l'aspx.
Sachant que la méthode GetDataSourcePart retourne bien le dataview escompté, je n'arrive pas a obtenir ce que je veux a savoir :
type
article
article
typr
article
etc...
Voici le code :
while (drTypes.Read())
{
this.tid = Convert.ToInt16(drTypes["type_id"]);
HyperLink monLinkType = new HyperLink();
TableRow tTr = new TableRow();
TableCell tTd = new TableCell();
monLinkType.Text = drTypes["type_libelle"].ToString();
monLinkType.NavigateUrl = "produit.aspx?cid=" + this.cid + "&pid=" + this.pid + "&tid=" + drTypes ["type_id"].ToString();
tTd.Controls.Add(monLinkType);
tTr.Cells.Add(tTd);
maTable.Rows.Add(tTr);
TableRow aTr = new TableRow();
TableCell aTd = new TableCell();
this.maListePart.DataSource = this.getDataSourcePart(mesRequetes.getArticlesByProduitType(this.cid, this.pid, this.tid));
this.maListePart.DataBind();
aTd.Controls.Add(this.maListePart);
aTr.Cells.Add(aTd);
maTable.Rows.Add(aTr);
}
Si kkun aune idée la dessus 
Merci a vous,
Aral.