Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

LinqDataSourceInsertEventArgs::NewObject Property

 

Gets the object that contains the data to insert.

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

public:
property Object^ NewObject {
	Object^ get();
}

Property Value

Type: System::Object^

An object that contains the data to insert.

The NewObject property contains the data that will be inserted into the data source. Create a handler for the Inserting event and retrieve the NewObject property in order to validate the data, change the data, or cancel the insert operation before the data operation is executed.

The NewObject property returns an object of type Object. You can cast this object to the type of the class that represents the data.

The following example shows a handler for the Inserting event. The object from the NewObject property is cast to a type named Product. The DateModified property of the Product object is set to the current date and time.

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

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft