SpeakFriend.FileUpload.UploadedFileName.CreateChildControls C# (CSharp) Method

CreateChildControls() protected method

protected CreateChildControls ( ) : void
return void
        protected override void CreateChildControls()
        {
            Controls.Clear();

            if (lblFileName == null)
                lblFileName = new Label()
                                  {
                                      ID = "lblFileName"
                                  };

            Controls.Add(lblFileName);
        }