DataControlField.InsertVisible Property
.NET Framework 3.0
Gets a value indicating whether the DataControlField object is visible when its parent data-bound control is in insert mode.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public boolean get_InsertVisible () /** @property */ public void set_InsertVisible (boolean value)
public function get InsertVisible () : boolean public function set InsertVisible (value : boolean)
Not applicable.
Property Value
true if the field is visible when its parent data-bound control is rendered in insert mode; otherwise, false. The default value is true.A data-bound control is in insert mode when the state of the current display row is DataControlRowState.Insert.
The DetailsView control checks the value of this property before it renders a set of fields. If the InsertVisible property is false, the Visible property of the DetailsViewRow object is set to false.
The value of the InsertVisible property is stored in view state.
Community Additions
ADD
Show: