/// <Summary>
 /// Function implementing IPostBackEventHandler which allows the ASP.NET page to invoke
 /// the control's events
 /// </Summary>
 public virtual void RaisePostBackEvent(string strEventArgument)
 {
     ClientAPIPostBackEventArgs clientAPIPostBackEventArgs1 = new ClientAPIPostBackEventArgs(strEventArgument);
     if (this.get_EventHandlers(clientAPIPostBackEventArgs1.EventName) == null)
     {
         return;
     }
     this.get_EventHandlers(clientAPIPostBackEventArgs1.EventName)(clientAPIPostBackEventArgs1);
 }
Пример #2
0
        /// <Summary>
        /// Function implementing IPostBackEventHandler which allows the ASP.NET page to invoke
        /// the control's events
        /// </Summary>
        public virtual void RaisePostBackEvent(string strEventArgument)
        {
            ClientAPIPostBackEventArgs clientAPIPostBackEventArgs1 = new ClientAPIPostBackEventArgs(strEventArgument);

            if (this.get_EventHandlers(clientAPIPostBackEventArgs1.EventName) == null)
            {
                return;
            }
            this.get_EventHandlers(clientAPIPostBackEventArgs1.EventName)(clientAPIPostBackEventArgs1);
        }