// // System.Web.UI.HtmlControls.HtmlHead // // Authors: // Lluis Sanchez Gual (lluis@novell.com) // // Copyright (C) 2004-2010 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System.ComponentModel; using System.Collections; using System.Security.Permissions; using System.Web.UI.WebControls; namespace System.Web.UI.HtmlControls { // CAS - no InheritanceDemand here as the class is sealed [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] // attributes [ControlBuilder (typeof(HtmlHeadBuilder))] public sealed class HtmlHead: HtmlGenericControl, IParserAccessor { string descriptionText; string keywordsText; HtmlMeta descriptionMeta; HtmlMeta keywordsMeta; string titleText; HtmlTitle title; //Hashtable metadata; StyleSheetBag styleSheet; public HtmlHead(): base("head") {} public HtmlHead (string tag) : base (tag) { } protected internal override void OnInit (EventArgs e) { base.OnInit (e); Page page = Page; if (page == null) throw new HttpException ("The
control requires a page."); //You can only have one control on a page. if(page.Header != null) throw new HttpException ("You can only have one control on a page."); page.SetHeader (this); } protected internal override void RenderChildren (HtmlTextWriter writer) { base.RenderChildren (writer); if (title == null) { writer.RenderBeginTag (HtmlTextWriterTag.Title); if (!String.IsNullOrEmpty (titleText)) writer.Write (titleText); writer.RenderEndTag (); } if (descriptionMeta == null && descriptionText != null) { writer.AddAttribute ("name", "description"); writer.AddAttribute ("content", HttpUtility.HtmlAttributeEncode (descriptionText)); writer.RenderBeginTag (HtmlTextWriterTag.Meta); writer.RenderEndTag (); } if (keywordsMeta == null && keywordsText != null) { writer.AddAttribute ("name", "keywords"); writer.AddAttribute ("content", HttpUtility.HtmlAttributeEncode (keywordsText)); writer.RenderBeginTag (HtmlTextWriterTag.Meta); writer.RenderEndTag (); } if (styleSheet != null) styleSheet.Render (writer); } protected internal override void AddedControl (Control control, int index) { //You can only have one