'Declaration Public Function LoadPostData( _ ByVal postDataKey As String, _ ByVal values As NameValueCollection _ ) As Boolean
public bool LoadPostData( string postDataKey, NameValueCollection values )
Posted back data generally appears url-encoded within the body of an HTTP post. The ASP.NET framework unpacks this information and dispatches it to elements on the page which implement IPostBackDataHandler, such as the SmartWebControl does.
The client-side object model generally posts back information related to state changes and actions undertaken by the end user with the element. This method is how the client-side and server-side communicate this stateful information back and forth.
Inheritors wishing to process posted back data added by their SmartWebControl subclass' client-side object model should override the OnLoadPostData method.
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