X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.HtmlControls%2FHtmlHeadBuilder.cs;h=ab52926462b6a382d2595f4d4f03389fbf80321c;hb=48992d4b3f8b568be17180372160d2f3e03b8ccb;hp=041c544b4b13b66667243ffcf75e8802ad4f1807;hpb=75df74a96c33af7a99e16e4281272f1b67334a48;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlHeadBuilder.cs b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlHeadBuilder.cs index 041c544b4b1..ab52926462b 100644 --- a/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlHeadBuilder.cs +++ b/mcs/class/System.Web/System.Web.UI.HtmlControls/HtmlHeadBuilder.cs @@ -4,7 +4,7 @@ // Authors: // Lluis Sanchez Gual (lluis@novell.com) // -// Copyright (C) 2004-2005 Novell, Inc (http://www.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 @@ -26,9 +26,8 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if NET_2_0 - using System.Collections; +using System.Globalization; using System.Security.Permissions; namespace System.Web.UI.HtmlControls @@ -45,11 +44,14 @@ namespace System.Web.UI.HtmlControls public override Type GetChildControlType (string tagName, IDictionary attribs) { - if (string.Compare (tagName, "TITLE", true) == 0) - return typeof(HtmlTitle); + if (String.Compare (tagName, "title", StringComparison.OrdinalIgnoreCase) == 0) + return typeof (HtmlTitle); + if (String.Compare (tagName, "link", StringComparison.OrdinalIgnoreCase) == 0) + return typeof (HtmlLink); + if (String.Compare (tagName, "meta", StringComparison.OrdinalIgnoreCase) == 0) + return typeof (HtmlMeta); return null; } } } -#endif