Version

LoadPostData Method (FlatDataBoundControl)

If any properties, objects, or collections were modified on the client, their transacation lists are loaded here. Also, if this is a Callback, it is where CallbackCreated is called from.
Syntax
'Declaration
 
Public Function LoadPostData( _
   ByVal postDataKey As String, _
   ByVal postCollection As NameValueCollection _
) As Boolean
public bool LoadPostData( 
   string postDataKey,
   NameValueCollection postCollection
)

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 postback; otherwise false.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also