Processes postback data for an ASP.NET server control

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

Syntax

C#
bool IPostBackDataHandler.LoadPostData(
	string postDataKey,
	NameValueCollection postCollection
)
Visual Basic (Declaration)
Private Function LoadPostData ( _
	postDataKey As String, _
	postCollection As NameValueCollection _
) As Boolean Implements IPostBackDataHandler.LoadPostData

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