This documentation is archived and is not being maintained.

ListViewInsertedEventArgs::KeepInInsertMode Property

Gets or sets a value that indicates whether the user's input values are preserved for the controls inside the InsertItemTemplate template.

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

public:
property bool KeepInInsertMode {
	bool get ();
	void set (bool value);
}

Property Value

Type: System::Boolean
true if the user's input values are preserved for the controls inside the InsertItemTemplate template; false if the user's input values are replaced with the default values for the controls. The default is false.

By default, the ListView control resets the control's values from the InsertItemTemplate template to their default values after an insert operation. This enables users to add values for a new item to be inserted. If an exception is raised during the insert operation, you can keep the ListView control in insert mode by setting the KeepInInsertMode property to true. This maintains the values from the previous attempt to insert an item for the controls inside the InsertItemTemplate template.

The following example shows how to use the KeepInInsertMode property to preserve the values entered by the user when an error occurs during the insert operation. This code example is part of a larger example provided for the ListViewInsertedEventArgs class.

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

.NET Framework

Supported in: 4, 3.5

Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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: