Suppose you display a data having 200 records in a
datagrid. Then you edit 100 records of them. Now when you
will press update button,all 100 records should be updated
in single shot rather than reading every record and
updating. How to do it?
Answer Posted / guest
Here, bind primary key of database to datagrid column make
it visible false.
and travel loop as
foreach(DataGridItem dataItem in DataGrid1.Items)
{
priceText = (TextBox)dataItem.FindControl
("txtBookPrice");
bookIdText = (TextBox)dataItem.FindControl("txtBookId");
Updatecode_for_perticular_row ();
}
txtBookPrice= textbox from witch u would like to update
txtBookId= test i.e. unique id comming from database
With help of unique id in for loop find perticular text in
texbox and update.
This code you will write on update button click.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
How to rename a table using sql queries?
What is the use of session in web application?
What is the biggest disadvantage of “Other Return Types” in Web API?
What is web configuration file and how to use in web application
Difference between .NET and previous version?
Why we use content place holder in asp.net?
What is the difference between table and query?
What is considered a service provider?
What's the use of response.output.write()?
Is LINQ performance wise better or using sqlcommand?
What are validators and list some validators of asp.net?
Web API uses which library for JSON serialization?
How Session use Cookies in State Management?
What is sta?
How can you identify that the page is post back?