//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* * Controls that will generate postback events from the client should implement this interface. * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.UI { using System; /// /// Defines the contract that controls must implement to /// handle low-level post back events. /// public interface IPostBackEventHandler { /* * Process the event that this control wanted fired from a form post back. */ /// /// /// Enables a control to process the event fired by a form post back. /// /// void RaisePostBackEvent(string eventArgument); } }