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
Explain what does wsdl stand for?
Which methods validate all the controls on a page?
How many types of state management are there in asp net?
What is state management in .net?
Give an example of cookie abuse.
Explain repository pattern in asp.net mvc? : asp.net mvc
Describe paging in asp.net?
Explain advantages of caching?
What is the file through which you can customize your asp.net application?
What is ispostback property?
How is session id generated?
What are the namespace classes used in asp.net mvc? : asp.net mvc
How to make paging concepts in datagrid in ASP.NET?
What are the types of caching in asp.net?
What is a 1x1 pixel?