Processes post-back data from a server control.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public virtual bool LoadPostData(
	string postDataKey,
	NameValueCollection values
)
Visual Basic
Public Overridable Function LoadPostData ( _
	postDataKey As String, _
	values As NameValueCollection _
) As Boolean

Parameters

postDataKey
Type: System..::..String
Required. The key identifier for the control.
values
Type: System.Collections.Specialized..::..NameValueCollection
Required. The collection of all incoming name values.

Return Value

True if the server control's state changes as a result of the post back; otherwise False.

Implements

IPostBackDataHandler..::..LoadPostData(String, NameValueCollection)

See Also