ProcessData Method
Processes post-back data from the hidden helper for the server control.
Syntax
Visual Basic Overridable Protected Function
ProcessData( ByVal szData As string ) As boolC# protected virtual bool
ProcessData(string szData );Managed C++ protected: virtual bool
ProcessData(string szData );JScript protected function
ProcessData(szData : string );
Parameters
szData Required. Data from the hidden helper.
Return Value
Returns one of the following possible values.
false Default. Server control's state does not change as a result of the post-back. true
Server control's state changes as a result of the post-back.
Applies To
BasePostBackControl
See Also