//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { /// /// Represents a control that has RenderOuterTable and ID properties. /// internal interface IRenderOuterTableControl { string ID { get; } bool RenderOuterTable { get; set; } } }