DynamicDataManager::DataControls Property
.NET Framework (current version)
Gets the list of data-control references in the DynamicDataManager control.
Assembly: System.Web.DynamicData (in System.Web.DynamicData.dll)
public: [PersistenceModeAttribute(PersistenceMode::InnerProperty)] property DataControlReferenceCollection^ DataControls { DataControlReferenceCollection^ get(); }
Property Value
Type: System.Web.DynamicData::DataControlReferenceCollection^The list of data-control references in the DynamicDataManager control.
The following example shows markup from a Dynamic Data page template that uses the DataControls property.
<asp:DynamicDataManager ID="DDM1" runat="server">
<DataControls>
<asp:DataControlReference ControlID="FormView1" />
</DataControls>
</asp:DynamicDataManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:FormView runat="server" ID="FormView1" DataSourceID="DDS">
<!-- Items omitted for clarity. -->
</asp:FormView>
</ContentTemplate>
</asp:UpdatePanel>
.NET Framework
Available since 4.0
Available since 4.0
Show: