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?

Answers were Sorted based on User's Feedback



Suppose you display a data having 200 records in a datagrid. Then you edit 100 records of them. No..

Answer / 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

Suppose you display a data having 200 records in a datagrid. Then you edit 100 records of them. No..

Answer / arief

First you load 20 records to DataGrid and add one
more templet field like"Chech Box" finally add one button
in your page for update operation

you write code whatever CheckBox clike get all row
id's and you can update row based on selected id's

Is This Answer Correct ?    3 Yes 0 No

Suppose you display a data having 200 records in a datagrid. Then you edit 100 records of them. No..

Answer / pradeep

Each row is having Edit/Update/Cancel button.
In "_UpdateCommand" event, we can write a code to update
directly into the database. But it is not good practice.
For updating whole records in a single event, we need to
have hidden column for updateflag and while updating we can
store the updated data into session. By using BUTTON
control out side of datagrid, we can find only 100 records
(updated records) based on updateflag and we can update
only those records into DB.

Is This Answer Correct ?    1 Yes 1 No

Suppose you display a data having 200 records in a datagrid. Then you edit 100 records of them. No..

Answer / masuduz zaman

By using dataSet.GetChanges(DataRowState.Modified) method we can update all 100 records at a time.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

How Many types of Page Load functions in asp.net

2 Answers  


How to kill more than one session variables at a time

9 Answers   iSoft,


What are the steps involved to fill a dataset?

0 Answers  


What are the advantages of the code-behind feature?

0 Answers  


What is boxing and unboxing?

3 Answers   Patni,






What are the advantages of using sql stored procedures instead of adhoc sql queries in an asp.net web application?

0 Answers  


How to send data through querystring to another page but it should not be displayed in URL

2 Answers   EMR, Powersoft19,


Is asp.net and .net the same?

0 Answers  


what are partial postbacks?

2 Answers   Infosys, Microsoft,


What is use of <% %> in asp.net?

0 Answers  


what are the events raised in asp.net page life cycle?in which stage view state can be loaded?

0 Answers   EDS,


What is redirectpermanent in asp.net?

0 Answers  


Categories