This documentation is archived and is not being maintained.

GridView::UpdateRow Method

Updates the record at the specified row index using the field values of the row.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
virtual void UpdateRow(
	int rowIndex, 
	bool causesValidation
)

Parameters

rowIndex
Type: System::Int32
The index of the row to update.
causesValidation
Type: System::Boolean
true to perform page validation when this method is called; otherwise, false.

ExceptionCondition
HttpException

The GridView control is bound to a data source control, but the DataSourceView associated with the data source is nullptr.

Use the UpdateRow method to programmatically update the record at the specified index in the data source. This method is commonly used when you need to update a record from outside of the GridView control, such as from a different control on the page.

NoteNote

This method can be called only for the row that is currently in edit mode, or for a row that contains a two-way data-bound input control. For more information about two-way binding expressions, see Binding to Databases.

To specify whether page validation is performed before the update operation, use the causesValidation parameter. Calling this method also raises the RowUpdated and RowUpdating events.

The following example demonstrates how to use the UpdateRow method to programmatically update a record in a GridView control.

No code example is currently available or this language may not be supported.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: