Skip Navigation Links
Data Controllers
Master/Detail Extravaganza
Database Lookups
Database Lookups (Replacement for asp:DropDownList) HR
Replace all asp:DropDownList and asp:ListBox controls that are being used in your ASP.NET applications to lookup the database information with infinitely scalable and efficient Database Lookups for ASP.NET and AJAX 3.5.


Compare the syntax of a standard ASP.NET control
<asp:DropDownList ID="ProductsLookup" runat="server" DataSourceID="ProductsDataSet1"
    DataValueField="ProductID" DataTextField="ProductName" />
and that of a Database Lookups for ASP.NET and AJAX 3.5
<aquarium:DataViewLookup ID="ProductsLookup" runat="server" DataController="Products"
    DataValueField="ProductID" DataTextField="ProductName" />
See the run-time difference below:
HR_COUNTRIES:
(select)
HR_DEPARTMENTS:
(select)
HR_EMPLOYEES:
(select)
HR_JOBS:
(select)
HR_LOCATIONS:
(select)
HR_REGIONS:
(select)
© 2008 My Company. All rights reserved.