예제 #1
0
        /// <summary>
        /// Called by the ASP.NET page framework to notify server controls that use
        /// composition-based implementation to create any child controls they contain
        /// in preparation for posting back or rendering.
        /// </summary>
        protected override void CreateChildControls()
        {
            base.CreateChildControls();

            this.textBox    = new TextBox();
            this.textBox.ID = ID + "_TextBox";
            this.textBox.AutoCompleteType = AutoCompleteType.Disabled;
            this.textBox.TextChanged     += new EventHandler(this.TextBoxTextChanged);
            Controls.Add(this.textBox);

            // Create the calendar extender
            this.dateInputBoxExtender    = new DateInputBoxExtender();
            this.dateInputBoxExtender.ID = this.ID + "_DateInputBoxExtender";
            this.dateInputBoxExtender.TargetControlID = this.textBox.ID;
            this.dateInputBoxExtender.WatermarkText   = DateInputBoxControl.Resources.DefaultWaterMark;
            this.Controls.Add(this.dateInputBoxExtender);
        }
예제 #2
0
        /// <summary>
        /// Called by the ASP.NET page framework to notify server controls that use 
        /// composition-based implementation to create any child controls they contain 
        /// in preparation for posting back or rendering. 
        /// </summary>
        protected override void CreateChildControls()
        {
            base.CreateChildControls();

            this.textBox = new TextBox();
            this.textBox.ID = ID + "_TextBox";
            this.textBox.AutoCompleteType = AutoCompleteType.Disabled;
            this.textBox.TextChanged += new EventHandler(this.TextBoxTextChanged);
            Controls.Add(this.textBox);

            // Create the calendar extender
            this.dateInputBoxExtender = new DateInputBoxExtender();
            this.dateInputBoxExtender.ID = this.ID + "_DateInputBoxExtender";
            this.dateInputBoxExtender.TargetControlID = this.textBox.ID;
            this.dateInputBoxExtender.WatermarkText = DateInputBoxControl.Resources.DefaultWaterMark;
            this.Controls.Add(this.dateInputBoxExtender);
        }