FormView.RenderOuterTable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the control encloses rendered HTML in a table
element in order to apply inline styles.
public:
virtual property bool RenderOuterTable { bool get(); void set(bool value); };
public virtual bool RenderOuterTable { get; set; }
member this.RenderOuterTable : bool with get, set
Public Overridable Property RenderOuterTable As Boolean
Property Value
true
if the control encloses rendered HTML in a table
element; otherwise, false
. The default is true
.
Remarks
In order to make inline style properties such as ForeColor apply to all the HTML that is rendered for the control, ASP.NET encloses the rendered HTML in a table
element. If you do not want the outer table
element to be rendered, set this property to false
. In that case, if you try to set inline style properties that apply to the whole control, an exception is thrown.