Can you edit data in the Repeater control?

Answers were Sorted based on User's Feedback



Can you edit data in the Repeater control?..

Answer / sivaprasad

Yes We Can Edit Data In a RepeaterControl,it is based on our
designing
Example:Display Data What Ever YOU want in Labels and same
data in to Textboxes(visible = false) while page is loading
and when user clicks Edit Button put all labels to visible
false and and all text boxes to visible true,
foreach(control con in Repeater.Items)
{
foreach(Control ctl in con.Controls)
{
if(ctl is TextBox)
{
((Textbox)ctl).Visible = true;
}
if(ctl is Label)
{
((Label)ctl).visible = false;
}
}
}

After This Iterate Through All Items in Our Repeater Like
for(int i=0;i<Repeater.Items.Count;i++)
{
string txt =
((Textbox)Repeater.Items[i].FindControl("Textboxid")).Text;
}

Get The Edited Text Like This And Update into Database

Is This Answer Correct ?    3 Yes 1 No

Can you edit data in the Repeater control?..

Answer / sunayana

No, it just reads the information from its data source

Is This Answer Correct ?    3 Yes 3 No

Can you edit data in the Repeater control?..

Answer / vishal

You can't edit repeater control but you can design it by
your own

Is This Answer Correct ?    2 Yes 2 No

Can you edit data in the Repeater control?..

Answer / 1647264

NO.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How to execute a stored procedure.and how to call it form a asp page

2 Answers  


To redirect the user to another page which method do we use without performing a round trip to the client?

0 Answers   Siebel,


how to create textboxes dynamically and insert textbox text into sql database

2 Answers   AGiSAC,


What is the use of asp.net web api?

0 Answers  


what is diffrent between asp & asp.net

2 Answers  






I create small website, i want accept all the browser this website? what will do?

1 Answers  


What is pre-init event in ASP.NET 2.0 page life cycle?

2 Answers   Fulcrum Logic,


Asp.net - How to find last error which occurred?

1 Answers   Abacus,


different architectures of asp.net?

1 Answers  


hi everyone. can anyone send me wipro interview questions on .net. plz its urgent

1 Answers   Wipro,


How would you turn off cookies on a page of a website?

0 Answers  


What is the difference between session and viewstate in asp.net?

0 Answers  


Categories