HomeCommunityControl GalleryList ControlsDbNetList

DbNetList



Submit a Review

885 Downloads

21,007 Views


Description

DbNetList is an AJAX enabled list control that makes it easy to add database driven lists to your web application. With DbNetList you can:

  • Generate multi-column lists, drop-down lists, tree lists, checkbox lists and more
  • Implement as a client-side JavaScript object or server-side server control.
  • Link lists together to create drill-down functionality

Syntax Example

<form id="Form1" name="Form1" method="post" runat="server"> <DNL:DbNetList id="customers" runat="server" VirtualDir=".." ConnectionString="samples" ShowRoot="false" STYLE="width:400px;height:300px;" > <Tiers> <DNL:Tier Sql="select distinct country, country as id from customers order by country"></DNL:Tier> <DNL:Tier Sql="select distinct city, city as id from customers where country = @id order by city"></DNL:Tier> <DNL:Tier Sql="select distinct companyname, customerid from customers where city = @id order by companyname"></DNL:Tier> <DNL:Tier Sql="select distinct orderdate, orderid from orders where customerid = @customerid order by orderdate"></DNL:Tier> <DNL:Tier Sql="select productname & ' (' & quantity & ')' from products, [order details] where products.productid = [order details].productid and orderid = @orderid"></DNL:Tier> </Tiers> </DNL:DbNetList> </form>

Screenshots

Reviews

Submit a review