// // System.Web.UI.HtmlControls.HtmlGenericControl.cs // // Authors: // Bob Smith // Gonzalo Paniagua (gonzalo@ximian.com) // // (C) Bob Smith // (c) 2002 Ximian, Inc. (http://www.ximian.com) // using System; using System.Web; using System.Web.UI; namespace System.Web.UI.HtmlControls{ [ConstructorNeedsTag] public class HtmlGenericControl : HtmlContainerControl { private string tagName; public HtmlGenericControl() : this ("span") { } public HtmlGenericControl (string tag) : base () { if (tag == null) tag = ""; tagName = tag; } public new string TagName { get { return tagName; } set { tagName = value; } } } }