MindFusion.UI for WebForms Programmer's Guide

DatePicker.LoadPostData Method

See Also
 





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

Namespace: MindFusion.UI.Web
Assembly: MindFusion.UI.Web

 Syntax

C#  Copy Code

public bool LoadPostData (
    string postDataKey,
    NameValueCollection postCollection
)

Visual Basic  Copy Code

Public Function LoadPostData( _
    postDataKey As String, _
    postCollection As NameValueCollection _
) As Boolean

 Parameters

postDataKey

Type: String
The key identifier for the control.

postCollection

Type: NameValueCollection
The collection of all incoming name values.

 Return Value

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

 See Also