ASP.NET Repeater control or custom implementation? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:53:19Z http://stackoverflow.com/feeds/question/746986 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/746986/asp-net-repeater-control-or-custom-implementation 0 ASP.NET Repeater control or custom implementation? Misha N. 2009-04-14T10:13:28Z 2009-04-14T13:12:03Z <p>Hallo,</p> <p>Recently I have read a couple of posts on varous sites and blogs that ASP.NET Repeater one of the most commonly used and accepted between experienced programmers. Someone actually wrote that he consider the asp.net programmer better if he mentions that he often use this control in a job interview. The fact that I used it rarely maybe makes me a beginner :) This is implementation I have used when I needed some control repeated dynamically.</p> <pre><code>public class MyUserControl:UserControl { LocalizedCheckBox chb; LocalizedLabel lbl; TextBox txt; public MyUserControl() { //Instantiate controls //do something with them } public bool Checked { get{ return chb.Checked;} } public string Text { get{ return txt.Text; } } } public partial class MyParentControl : System.Web.UI.UserControl { protected void Page_Load(object sender, EventArgs e) { // } protected override void OnInit(EventArgs e) { base.OnInit(e); foreach('something') { MyUserControl ctr = new MyUserControl(); ctr.Text="some value"; ctr.Checked= false; this.Panel1.Controls.Add(ctr); } } protected void btn_Click(object sender, EventArgs e) { foreach (MyUserControl dControl in this.Panel1.Controls.OfType&lt;MyUserControl&gt;()) { //do something string text = dControl.Text; } } } </code></pre> <p>I have never had a problem with this code even when I added the events on MyUserControl. Of course, that it's possible to achieve the same with repeater control, but I would like to know why(or is it) better to use repeater.</p> <p>What are the benefits if I use repeater instead?</p> <p>Thanks</p> http://stackoverflow.com/questions/746986/asp-net-repeater-control-or-custom-implementation/747049#747049 0 Answer by Fabian Vilers for ASP.NET Repeater control or custom implementation? Fabian Vilers 2009-04-14T10:46:34Z 2009-04-14T10:46:34Z <p>Repeaters are easily binded to datasources.</p> http://stackoverflow.com/questions/746986/asp-net-repeater-control-or-custom-implementation/747472#747472 0 Answer by devmania for ASP.NET Repeater control or custom implementation? devmania 2009-04-14T13:12:03Z 2009-04-14T13:12:03Z <p>man, you better use repeater or much better use listvew in Net 3.5, why ? -because it is super easy to databind to any datasource, using Eval for controls inside of it. - you get many templates for your like , i use it a lot when the database return no result, you can put a message here to inform the user instead of showing blank screen. - you can control the rendering, whither you want Tables, Div, UL, you just name it.</p> <p>i highly recommend to invest in the new listview for repeating stuff.</p> <p>hope this helps</p>