When implemented by a class, processes postback data for an ASP.NET server control.

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

Syntax

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

Parameters

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

Return Value

true if the server control's state changes as a result of the postback; otherwise, false.

Implements

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

See Also