* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Web.UI */ /** * IPostBackEventHandler interface * * If a control wants to respond to postback event, it must implement this interface. * * @author Qiang Xue * @package System.Web.UI * @since 3.0 */ interface IPostBackEventHandler { /** * Raises postback event. * The implementation of this function should raise appropriate event(s) (e.g. OnClick, OnCommand) * indicating the component is responsible for the postback event. * @param string the parameter associated with the postback event */ public function raisePostBackEvent($param); }