Esempio n. 1
0
        protected virtual bool LoadControlState(NameValueCollection postCollection)
        {
            var postedControlState = postCollection[ClientID + "_" + GetCStateControlID()];

            if (postedControlState.IsNotEmpty())
            {
                ControlState.Load(postedControlState);

                return(true);
            }

            return(false);
        }