Gets or sets the user-defined content for the empty data row rendered when a System.Web.UI.WebControls.DetailsView control is bound to a data source that does not contain any records.
Documentation for this section has not yet been entered.
The empty data row is displayed in a System.Web.UI.WebControls.DetailsView control when the data source that is bound to the control does not contain any records. You can define your own custom user interface (UI) for the empty data row by using the DetailsView.EmptyDataTemplate property. To specify a custom template for the null row, first place <EmptyDataTemplate> tags between the opening and closing tags of the System.Web.UI.WebControls.DetailsView control. You can then list the contents of the template between the opening and closing <EmptyDataTemplate> tags. To control the style of the empty data row, use the DetailsView.EmptyDataRowStyle property. Alternatively, you can use the built-in UI for the empty data row by setting the DetailsView.EmptyDataText property instead of this property.
If both the DetailsView.EmptyDataText and DetailsView.EmptyDataTemplate properties are set, the DetailsView.EmptyDataTemplate property takes precedence.