Rock.Web.UI.Controls.DatePicker.OnLoad C# (CSharp) Метод

OnLoad() защищенный Метод

Raises the E:System.Web.UI.Control.Load event.
protected OnLoad ( EventArgs e ) : void
e System.EventArgs The object that contains the event data.
Результат void
        protected override void OnLoad( EventArgs e )
        {
            base.OnLoad( e );

            // make sure the input's value matches the text on PostBack (DatePicker relies on "value" of input and text)
            this.Attributes["value"] = this.Text;
        }