Contents

DateTimePicker.LoadPostData Method

Notes

Implementation of IPostBackDataHandler.LoadPostData interface.

Processes postback data for the control.

This method is used by the ASP.Net page framework and the developer should have no need to call this method from code.

The page framework tracks all the server controls that return true to this method call, then invokes the RaisePostDataChangedEvent on those controls.

Syntax

[Visual Basic]
Public Function LoadPostData( _
   ByVal postDataKey As System.String, _
   ByVal postCollection As NameValueCollection _
) As Boolean
[C#]
public bool LoadPostData(
   System.String postDataKey,
   NameValueCollection postCollection
);
[C++]
Public: bool LoadPostData(
   System.String* postDataKey,
   NameValueCollection* postCollection
);
[JScript]
Public function LoadPostData(
   postDataKey : System.String,
   postCollection : NameValueCollection
) : Boolean;

Parameters

postDataKey : The key identifier for the control.

postCollection : 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.

See Also

DateTimePicker Contents | DateTimePicker Overview | DateTimePicker Members


Support | Feedback | Contact Dune5 | Website

© 2001-2003 Dune5. All Rights Reserved.