Ajit
Answered On : Oct 1st, 2011
No
Repeater control to does not a functionality of Edit, Update, Delete as Gridview,listview

1 User has rated as useful.
Login to rate this answer.
Aruna
Answered On : Oct 12th, 2011
No,Cant do any edit ,update and delete operation for the repeater control,this is used for only to display the data.
Login to rate this answer.
Manish Pandey
Answered On : Oct 13th, 2011
Yes functionally it is possible to add,Edit and delete using repeater control as you can define the template in repeater control(e.g Text box for editing) and u can find that template controls at run time for I/U/D process
Login to rate this answer.
suresh
Answered On : Feb 2nd, 2012
Repeater control does not provide any facilities like editing,paging etc....but compared to datalist,datagridview the execution is fast.......

1 User has rated as useful.
Login to rate this answer.
Yes, in repeater control we can also provide all the functionality like other control but for that a developer have to write a code for that like in use link button & in command name property set to appropriate name
eg .....
C# code for update command
Code
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
switch (e.CommandName)
{
case "Update":
UpdateMovie(e);
break;
case "Insert":
InsertMovie(e);
break;
case "delete":
DeleteMovie(e);
break;
}
}
void UpdateMovie(RepeaterCommandEventArgs e)
{
TextBox txt1 = (TextBox)e.Item.FindControl("TextBox1");
TextBox txt2 = (TextBox)e.Item.FindControl("TextBox2");
TextBox txt3 = (TextBox)e.Item.FindControl("TextBox3");
CheckBox chk = (CheckBox)e.Item.FindControl("CheckBox1");
SqlDataSource1.UpdateParameters["eno"].DefaultValue = txt1.Text;
SqlDataSource1.UpdateParameters["ename"].DefaultValue = txt2.Text;
SqlDataSource1.UpdateParameters["code"].DefaultValue = txt3.Text;
SqlDataSource1.UpdateParameters["gender"].DefaultValue = chk.Checked.ToString();
SqlDataSource1.Update();
}
Login to rate this answer.
Aarti Helkar
Answered On : Apr 9th, 2012
Yes, repeater also have that capability to edit,delete and update the record.
We have to explicitly write the code for that, as we write for the binding of db.
Login to rate this answer.
Urmi
Answered On : Apr 20th, 2012
No.The Repeater control is used to display a repeated list of items that are bound to the control. The Repeater control may be bound to a database table, an XML file, or another list of items.
Login to rate this answer.