Every Web Form that uses BLD requires these 3 controls: A DataBound control like ListView or DetailsView,
a DataSource control like LinqDataSource, and the BLDPageManager control.
<des:BLDPageManager ID="BLDPageManager1" runat="server" >
<Adapters>
<des:SomeDataControlAdapter DataBoundControlID="DBView1" other properties />
</Adapters>
</des:BLDPageManager>
<asp:someView ID="DBView1" runat="server" DataSourceID="DataSource1" other properties >
BLDDataFields, web controls, and HTML to format this content
</asp:someView>
<asp:someDataSource ID="DataSource1" runat="server" EntityTypeName="EntityType" >
Configure the CRUD operations
</asp:someDataSource>
The content of the DataBound control is associated with the DataFields of your Entity class.
Each DataField is shown by using a Field Template. Field Templates provide
the appearance and editing capabilities for a DataField. They also guarantee
the business logic is followed.
The BLDDataField control inserts a Field Template into the page and connects it
to its DataBound control.
When Phase 3 is complete, you will know BLD's requirements for a Web Form to host
BLD controls and interact with your business logic.