This documentation is archived and is not being maintained.

DynamicDataManager::DataControls Property

Gets the list of data-control references in the DynamicDataManager control.

Namespace:  System.Web.DynamicData
Assembly:  System.Web.DynamicData (in System.Web.DynamicData.dll)

[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
public:
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

Supported in: 4

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: