No. You can edit in repeater control .. It is used to
display data in a stylish way and in various format based on
the client requirements....
Happy Programming...
sorry above i dint mention not......
It is not possible for the following reason.... It does not
have any built-in support for paging, editing, or sorting of
the data that is rendered through one or more of its templates.
No u can not edi tthe data in the repeater ccontrol ,u can
bind the data from from data base through ItemTemplate .But
in performance point of view repeater is very good
accessing a textbox that was created dynamically?
for (int i = 0; i < t1; i++)
{
TextBox t2 = new TextBox();
t2.ID = "adf" + i;
PlaceHolder1.Controls.Add(t2);
}
accessing data entered in the above created controls.
There is a login page that has two text boxes with required
field validators on it. The page has a login and cancel
button. How can we ensure that the click on the cancel
button doesnt fire a validation event.