Example #1
0
 /// <summary>
 /// Sends server control content to a provided <see cref="T:System.Web.UI.HtmlTextWriter" /> object, which writes the content to be rendered on the client.
 /// </summary>
 /// <param name="output">The <see cref="T:System.Web.UI.HtmlTextWriter" /> object that receives the server control content.</param>
 protected override void DoRender(HtmlTextWriter output)
 {
     LimitedFieldHelper.DoRender(new Action(() => base.DoRender(output)), output, this);
 }
Example #2
0
        /// <summary>
        /// Raises the <see cref="E:System.Web.UI.Control.Load"></see> event.
        /// </summary>
        /// <param name="e">The <see cref="T:System.EventArgs"></see> object that contains the event data.</param>
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            LimitedFieldHelper.OnLoad(this);
        }