DataControlReference.ControlID Property
.NET Framework (current version)
Gets the ID of the data-bound control that is managed by the DynamicDataManager control.
Assembly: System.Web.DynamicData (in System.Web.DynamicData.dll)
<TypeConverterAttribute("System.Web.DynamicData.Design.DataControlReferenceIDConverter, System.Web.DynamicData.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")> Public Property ControlID As String
Property Value
Type: System.StringThe ID of the data-bound control that is managed by the DynamicDataManager control.
The following example shows the markup from a Dynamic Data page template that connects the DynamicDataManager control to a FormView control. The ControlID property is set to "FormView1".
Note |
|---|
Some markup is removed for clarity. |
<asp:DynamicDataManager ID="DynamicDataManager1" runat="server"
AutoLoadForeignKeys="true">
<DataControls>
<asp:DataControlReference ControlID="FormView1" />
</DataControls>
</asp:DynamicDataManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<!-- Items ommited for clarity. -->
<asp:FormView runat="server" ID="FormView1"
DataSourceID="DetailsDataSource" DefaultMode="Edit"
OnDataBound="FormView1_DataBound">
<!-- Items ommited for clarity. -->
</asp:FormView>
</ContentTemplate>
</asp:UpdatePanel>
.NET Framework
Available since 4.0
Available since 4.0
Show:
