private void binding() { GVW_Annonces.DataSource = contenus; GVW_Annonces.DataBind(); //Table t = new Table(); //foreach (Content cc in contenus) //{ // #region Titre // TableRow r = new TableRow(); // //r.CssClass = "HDJ_Row"; // TableCell c = new TableCell(); // //c.CssClass = "HDJ_Table_Titre"; // Label l = new Label(); // l.Text = cc.titre; // c.Controls.Add(l); // r.Cells.Add(c); // t.Rows.Add(r); // #endregion Titre // #region texte // r = new TableRow(); // //r.CssClass = "HDJ_Row"; // c = new TableCell(); // //c.CssClass = "HDJ_Table_Cell"; // Panel p = new Panel(); // l = new Label(); // string letexte = StripHTML(cc.texte); // if (letexte.Length > 20) // { // l.Text = letexte.Substring(0, 20) + " ..."; // } // else // { // l.Text = letexte; // } // p.Controls.Add(l); // p.Controls.Add(new LiteralControl("<br />")); // HyperLink hlk = new HyperLink(); // hlk.Text = "Voir l'annonce"; // hlk.ToolTip = "Voir l'annonce"; // hlk.NavigateUrl = Functions.UrlAddParam(Globals.NavigateURL(Annoncetabid), "id_contenu", "" + cc.id); // p.Controls.Add(hlk); // c.Controls.Add(p); // r.Cells.Add(c); // t.Rows.Add(r); // #endregion texte // #region Link // //r = new TableRow(); // ////r.CssClass = "HDJ_Row"; // //c = new TableCell(); // ////c.CssClass = "HDJ_Table_Cell"; // //HyperLink hlk = new HyperLink(); // //c.Controls.Add(hlk); // //r.Cells.Add(c); // //t.Rows.Add(r); // //Hyperlink1.NavigateUrl = Functions.UrlAddParam(Globals.NavigateURL(Annoncetabid), "id_contenu", "" + contenus[0].id); // #endregion Link //} //PlaceHolder1.Controls.Add(t); }
void RefreshGrid_Annonce() { annonces = DataMapping.GetListSubscriptions(null); GVW_Annonces.DataSource = annonces; GVW_Annonces.DataBind(); }
void RefreshGrid_Annonce() { annonces = DataMapping.GetListContent(UserInfo.UserID, "Annonce"); GVW_Annonces.DataSource = annonces; GVW_Annonces.DataBind(); }