.NET Framework Class Library
SqlDataSource..::.OldValuesParameterFormatString Property

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

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

Visual Basic (Declaration)
Public Property OldValuesParameterFormatString As String
Visual Basic (Usage)
Dim instance As SqlDataSource
Dim value As String

value = instance.OldValuesParameterFormatString

instance.OldValuesParameterFormatString = value
C#
public string OldValuesParameterFormatString { get; set; }
Visual C++
public:
property String^ OldValuesParameterFormatString {
    String^ get ();
    void set (String^ value);
}
JScript
public function get OldValuesParameterFormatString () : String
public function set OldValuesParameterFormatString (value : String)
ASP.NET
<asp:SqlDataSource OldValuesParameterFormatString="String" />

Property Value

Type: System..::.String
A string that represents a format string applied to the names of any oldValues parameters passed to the Delete or Update methods. The default is "{0}".
Remarks

The 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 ConflictDetection property is set to the 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 OldValuesParameterFormatString property are as follows:

  • To differentiate between old and new values in updates. When the ConflictDetection property is set to the CompareAllValues value, parameters for both the original and new values are added to the 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.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources

Tags :


Page view tracker