HtmlTitle.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlTitle.cs / 1305376 / HtmlTitle.cs

                            namespace System.Web.UI.HtmlControls { 
    using System;
    using System.ComponentModel;

    public class HtmlTitle : HtmlControl { 
        private string _text;
 
 
        public HtmlTitle() : base("title") {
        } 


        [
        WebCategory("Appearance"), 
        DefaultValue(""),
        DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), 
        Localizable(true), 
        PersistenceMode(PersistenceMode.InnerDefaultProperty)
        ] 
        public virtual string Text {
            get {
                if (_text == null) {
                    return String.Empty; 
                }
                return _text; 
            } 
            set {
                _text = value; 
            }
        }

 
        protected override void AddParsedSubObject(object obj) {
            if (obj is LiteralControl) { 
                _text = ((LiteralControl)obj).Text; 
            }
            else { 
                base.AddParsedSubObject(obj);
            }
        }
 
        // Allow child controls to support databinding expressions as inner text.
        protected override ControlCollection CreateControlCollection() { 
            return new ControlCollection(this); 
        }
 

        protected internal override void Render(HtmlTextWriter writer) {
            writer.RenderBeginTag(HtmlTextWriterTag.Title);
 
            if (HasControls() || HasRenderDelegate()) {
                RenderChildren(writer); 
            } 
            else if (_text != null) {
                writer.Write(_text); 
            }

            writer.RenderEndTag();
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
namespace System.Web.UI.HtmlControls { 
    using System;
    using System.ComponentModel;

    public class HtmlTitle : HtmlControl { 
        private string _text;
 
 
        public HtmlTitle() : base("title") {
        } 


        [
        WebCategory("Appearance"), 
        DefaultValue(""),
        DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), 
        Localizable(true), 
        PersistenceMode(PersistenceMode.InnerDefaultProperty)
        ] 
        public virtual string Text {
            get {
                if (_text == null) {
                    return String.Empty; 
                }
                return _text; 
            } 
            set {
                _text = value; 
            }
        }

 
        protected override void AddParsedSubObject(object obj) {
            if (obj is LiteralControl) { 
                _text = ((LiteralControl)obj).Text; 
            }
            else { 
                base.AddParsedSubObject(obj);
            }
        }
 
        // Allow child controls to support databinding expressions as inner text.
        protected override ControlCollection CreateControlCollection() { 
            return new ControlCollection(this); 
        }
 

        protected internal override void Render(HtmlTextWriter writer) {
            writer.RenderBeginTag(HtmlTextWriterTag.Title);
 
            if (HasControls() || HasRenderDelegate()) {
                RenderChildren(writer); 
            } 
            else if (_text != null) {
                writer.Write(_text); 
            }

            writer.RenderEndTag();
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK