Introduction
ASP.NET 2.0 came out with tons of new controls which help developers to speed up development. Among all the new controls, the TreeView
control stands out as one of the most important and useful controls. The TreeView
control enables you to display data in a hierarchical form. The TreeView
control also allows you to embed different ASP.NET controls within it. In this article, we will see that how we can populate a TreeView
control from the database.
Setting up the Scenario
The TreeView
control can be populated with different types of sources, which include the SiteMapDataSource
control, XML files, collections, containers, and database tables. The choice of the data source is closely tied with the scenario, and the requirements of the application. Database should be the first choice when you are certain that the data will be constantly changing. It is also the primary choice when you want to perform different operations on the data. These operations include sorting, searching, and ordering.
In this article, I will be using the Northwind database, which is the default database of SQL Server 7 and SQL Server 2000. I will be dealing with the Categories and the Products table in the Northwind database. Since, TreeView
is primarily used to display hierarchical data, I will display the items in the Category table and all the products belonging to each category. I will be using entity classes and generic collections to create relationships between the Category
class and the Product
class. First, let's check out the T-SQL query that will return the results from the Categories and the Products table.
T-SQL Query
The following T-SQL Query is used to get information about categories and products. You can easily change the query to a stored procedure but I wanted to keep things simple, that is why I did not implement a stored procedure.
SELECT p.ProductID, p.ProductName,c.CategoryID,c.CategoryName
FROM Products p
JOIN Categories c ON p.CategoryID = c.CategoryID
ORDER BY c.CategoryID
Creating Entity Classes
The next step is to create the entity classes for the Category and the Products table. I have created a small tool that can be used to create entity classes. You can check out the code for the entity classes below:
public class Product
{
private int productID;
private string productName;
public int ProductID
{
get { return this.productID; }
set { this.productID = value; }
}
public string ProductName
{
get { return this.productName; }
set { this.productName = value; }
}
public Product(int productID, string productName)
{
this.productID = productID;
this.productName = productName;
}
public Product()
{
}
}
And here is the Category
entity class:
public class Category
{
private int categoryID;
private string categoryName;
private List<Product> productList =
new List<Product>();
public int CategoryID
{
get { return this.categoryID; }
set { this.categoryID = value; }
}
public string CategoryName
{
get { return this.categoryName; }
set { this.categoryName = value; }
}
public List<Product> ProductList
{
get { return this.productList; }
set { this.productList = value; }
}
After creating the entity classes, the next task is to populate the generic category list.
Populating the Generic Category List
Now, let's see how we can create and populate the generic category list. Creating a generic category list is simple, and can be accomplished by a single line of code.
List<Category> categoryList = new List<Category>();
Now, let's see how we can populate the category list. The idea behind populating the category list is that a list can have multiple categories and each category can have multiple products. In other words, the generic list will contain the category objects, and each single category object will contain a list of product objects.
int i = -1;
while (reader.Read())
{
Category category = new Category();
category.CategoryID = Convert.ToInt32(reader["CategoryID"]);
category.CategoryName = reader["CategoryName"] as String;
if (!DoesCategoryIDAlreadyExists(category.CategoryID, categoryList))
{
categoryList.Add(category);
i++;
categoryList[i].productList.Add(new Product(
Convert.ToInt32(reader["ProductID"]),
reader["ProductName"] as String));
}
else
{
categoryList[i].productList.Add(new Product(
Convert.ToInt32(reader["ProductID"]),
reader["ProductName"] as String));
}
}
The complete code is available in the download. The DoesCategoryIDAlreadyExists
checks whether we are dealing with the same category. If we are, then we simply keep on adding the products to that particular category. The approach mentioned above might not be the best approach to populate the category list, and if you come up with something interesting, please let me know. Anyway, after populating the category list, the next task is to populate the TreeView
control.
Populating the TreeView Control
Since the data is coming from the database, we have to build the TreeNode
s and the corresponding ChildNode
s dynamically. The idea is to loop through the categories and create the parent nodes, and loop through the corresponding child nodes to create the products.
private void PopulateTreeViewControl(List<Category> categoryList)
{
TreeNode parentNode = null;
foreach (Category category in categoryList)
{
parentNode = new TreeNode(category.CategoryName,
category.CategoryID.ToString());
foreach (Product product in category.ProductList)
{
TreeNode childNode = new TreeNode(product.ProductName,
product.ProductID.ToString());
parentNode.ChildNodes.Add(childNode);
}
parentNode.Collapse();
tvCategories.ShowCheckBoxes = TreeNodeTypes.All;
tvCategories.Nodes.Add(parentNode);
}
}
The PopulateTreeViewControl
method takes the category list as a parameter, and iterates through to populate the TreeView
control. The Collapse
method of the TreeNode
is responsible for keeping the TreeView
compact so that the leafs are not expanded. Finally, after creating the TreeNode
s and ChildNode
s, the nodes are added to the TreeView
's Nodes
collection.
Take a look at the screenshot below:
Conclusion
In this article, we learned how the TreeView
control can be populated with the data from the database. The use of entity classes simplified the development, and cut down the lines of code. In later articles, we will see how we can select the nodes using checkboxes inside the TreeView
control.
I hope you liked the article, happy coding!