System.Web.UI.WebControls.SqlDataSource.OldValuesParameterFormatString Property

Gets or sets a format string to apply to the names of any parameters that are passed to the SqlDataSource.Delete or SqlDataSource.Update method.

Syntax

[System.ComponentModel.DefaultValue("{0}")]
public string OldValuesParameterFormatString { set; get; }

Value

Documentation for this section has not yet been entered.

Remarks

The SqlDataSource.OldValuesParameterFormatString format string is applied only to primary keys, such as those that are identified by the DataKeyNames property of the associated data-bound control, or in delete and update scenarios where the SqlDataSourceView.ConflictDetection property is set to the System.Web.UI.ConflictOptions.CompareAllValues value and a set of oldValues are passed to the corresponding data method. In this case, the format string is applied to each parameter name in the oldValues collection.

Two common scenarios where you might change the SqlDataSource.OldValuesParameterFormatString property are as follows:

  • To differentiate between old and new values in updates. When the SqlDataSource.ConflictDetection property is set to the System.Web.UI.ConflictOptions.CompareAllValues value, parameters for both the original and new values are added to the ObjectDataSource.UpdateParameters collection. Without the formatting string, two parameters with the same name would be created for each data field. By changing the name of the original value parameter, you can compare the data to the original data source to detect conflicts and compare key values.

  • Some visual designers implement a particular naming scheme for original values and keys.

Requirements

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0