GridViewUpdateEventArgs.NewValues Property

Gets a dictionary containing the revised values of the non-key field name/value pairs in the row to update.

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

public:
property IOrderedDictionary^ NewValues {
	IOrderedDictionary^ get ();
}
/** @property */
public IOrderedDictionary get_NewValues ()

public function get NewValues () : IOrderedDictionary

Not applicable.

Property Value

An System.Collections.Specialized.IOrderedDictionary object containing the revised values of the non-key field name/value pairs in the row to update.

Use the NewValues property (dictionary) to access the values of the revised non-key fields in the row to update.

NoteNote:

The primary key field or fields are not included in this dictionary. To access the values of the primary key field or fields, use the Keys property. To access the original values of the non-key fields in the row, use the OldValues property.

The NewValues property is automatically populated with the name/value pairs of the revised non-key fields in the row. A separate entry is added to the NewValues property for each non-key field in the row.

To determine the field name of an entry, use the DictionaryEntry.Key property of a System.Collections.DictionaryEntry object contained in the NewValues dictionary. To determine the value of an entry, use the DictionaryEntry.Value property.

The following example demonstrates how to use the NewValues property to HTML-encode all values supplied by the user before updating the data source.

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

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: