Dynamic GridView and DataList in ASP.NET 2.0
page 2 of 10
by Satheesh Babu
Feedback
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days): 67657/ 74

Scenario

Consider we are creating a site that hosts technical articles similar to aspalliance.com/Codeproject.com with the authors submitting their article on different categories. Consider an article index page that displays the top 4 articles on each category from the author's submission. We can have a separate tabular view for each category in the article index page. Refer to the below "Figure 1 – Article Listing" for a clear understanding.

It will be hard and time consuming if we manually add a GridView/DataList for each new category added in the site. We can feel the difficulty if we add a new GridView/DataList to the page manually whenever a new category is added to the site and deploy it again. In this situation we can consider dynamically adding a GridView/DataList to serve the need without any manual efforts involved when a new category is added to the site. Therefore, we are preventing editing the page frequently for every new category and deploying it, with only a little overhead in development time as opposed to a static GridView/DataList.

Figure 1: Article Listing

There can be many other scenarios like, when we really do not know how many resultset a stored procedure is going to return that has dynamic queries depending upon some business rules. I will use the above example of article site throughout this article to explain constructing dynamic DataList/GridView.

How to achieve it?

It is achieved by implementing ITemplate interface in System.Web.UI namespace.

In this article I will explain the construction of dynamic DataList and GridView by building dynamic template columns. Moving forward I will create dynamic template columns for both Datalist and gridview specifically the resultset returned by the stored procedure. Template columns for both datalist and gridview can be created by implementing the interface ITemplate in System.Web.UI namespace. Refer to Listing 1 and class diagram in Figure 2 for ITemplate interface.

Listing 1: ITemplate Interface

namespace System.Web.UI
{
    // Summary:
    // Defines the behavior for populating a templated ASP.NET server control with
    // child controls. The child controls represent the inline templates defined
    // on the page.
    public interface ITemplate
    {
        // Summary:
        // When implemented by a class, defines the System.Web.UI.Control 
        // object that
        // child controls and templates belong to. These child controls 
        // are in turn
        // defined within an inline template.
        //
        // Parameters:
        //  container:
        //   The System.Web.UI.Control object to contain the instances 
        //   of controls from
        //     the inline template.
        void InstantiateIn(Control container);
    }
}

Figure 2: ITemplate class diagram

With this information we will now create header template, item template and footer template column for these controls by implementing the above ITemplate interface.


View Entire Article

User Comments

Title: aaaa   
Name: aaaa
Date: 2012-10-19 12:48:33 AM
Comment:
aaaaa
Title: 6u5u75   
Name: 657657
Date: 2012-10-19 12:48:18 AM
Comment:
hgfgfhfgh
Title: sgrryry   
Name: ryryytr
Date: 2012-08-18 9:00:37 AM
Comment:
hkhafsjkfbudssdjfwuifwfbweufwefwefbewjfuwiefw
Title: 2012 NFL jerseys   
Name: NIKE NFL jerseys
Date: 2012-05-20 11:33:16 PM
Comment:
[/pre]Cheap NFL,NBA,MLB,NHL
[url=http://www.jersey2shop.com/]Jerseys From China[/url]
[url=http://www.jersey2shop.com/]2012 nike nfl Jerseys[/url]
[url=http://www.jersey2shop.com/]cheap China Jerseys[/url]
[url=http://www.jersey2shop.com/]Sports Jerseys China[/url]
[url=http://www.jersey2shop.com/NFL-Jerseys-c68/]NFL Jerseys China[/url]
[url=http://www.jersey2shop.com/NBA-Jerseys-c77/]NBA Jerseys China[/url]
NHL Jerseys China
[url=http://www.jersey2shop.com/MLB-Jerseys-c94/]MLB Jerseys China[/url]NFL jerseys For Sale online.All Our Jerseys Are Sewn On and Directly From Chinese Jerseys Factory
[/pre]
[pre]We Are Professional China jerseys Wholesaler
[url=http://www.cheapjersey2store.com/]Wholesale cheap jerseys[/url]Cheap mlb jerseys
[url= http://www.cheapjersey2store.com/]2012 mlb all atar jerseys[/url]
[url= http://www.cheapjersey2store.com/ [/url]Cheap China Wholesael[/url]
[url= http://www.cheapjersey2store.com/]Wholesale jerseys From China[/url]
[url=http://www.cheapjersey2store.com/]2012 nike nfl Jerseys[/url]Free Shipping,Cheap Price,7 Days Deliver
[/pre]
[/pre]
We are professional jerseys manufacturer from china,wholesal
sports [url= http://www.cheapjersey2store.com/]Jerseys From China[/url]
[url=http://www.cheapjersey2store.com/NFL-Jerseys-c68]NFL jerseys China[/url]
[url=http://www.cheapjersey2store.com/NHL-Jerseys-c96/]NHL Jerseys China[/url]
[url=http://www.cheapjersey2store.com/NBA-Jerseys-c77/]NBA Jerseys China[/url]
[url=http://www.cheapjersey2store.com/MLB-Jerseys-c94/]MLB Jerseys China[/url]
[url= http://www.cheapjersey2store.com/]China Jerseys[/url],Free Shipping
[/pre]
[/pre]
We are professional jerseys manufacturer from china,wholesal
sports [url= http://www.jerseycaptain.com/]cheap jerseys sale online [/url]
[url= http://www.jerseycaptain.com/]2012 nike nfl Jerseys[/url]
[url=http://www.jerseycaptain.com/NFL-Jerseys-c68]cheap NFL jerseys China[/url]
[url=http://www.jerseycaptain.com/NHL-Jerseys-c96/]NHL Jerseys C
Title: good article   
Name: Mahmoud ALGoul
Date: 2011-02-02 5:51:30 AM
Comment:
cool article, but how I can add paging for the code, any help please.
Title: FANTASTIC!!   
Name: André
Date: 2010-03-12 5:02:57 PM
Comment:
Thank You!! Great job and easy to understand..
Title: web filtering policy   
Name: adel
Date: 2009-07-29 5:47:19 AM
Comment:
i need to design web filtering policy
Title: Itemplate funtion not working   
Name: Prabhat Sinha
Date: 2009-06-25 7:17:46 AM
Comment:
its really good work in C# but itemplete funtion not working in vb.net please help me
Title: If items dissapear in postback   
Name: TiagoReil
Date: 2009-06-16 1:23:08 PM
Comment:
I had to do something like this, and had lots of problems. First of all, when you do a postback, you loose all the dinamic templates. Not databounts added dinamically, but only the ones that are templates disapear always. So I run the code on every postback. But then the events in the grid, that are loaded dinamically, started acting strange. Runing events that had already run, etc.

The solution and correct way to do this is to add all the code for adding columns on the PreInit event. Thats the correct place to add the creation of the columns.

Santiago.
Title: Great example   
Name: Vijay
Date: 2009-06-06 3:36:28 AM
Comment:
What is DynamicGrid_RowDataBound doing?
Title: Working example   
Name: Mindaugas
Date: 2009-06-03 5:05:06 AM
Comment:
Working example. Thank you!
Title: Dynamic GridView   
Name: Shaju M.K
Date: 2009-02-12 5:38:02 PM
Comment:
Hi Satheesh Babu,
Really its a very nice article that helped me to solve the issue that I faced in the development stage.

Thank You Very much!
Title: JSON LINQ   
Name: willian brasil
Date: 2008-10-03 1:18:03 PM
Comment:
Very Good!
Title: Data List   
Name: Deleep Kumar Pavana
Date: 2008-09-11 5:03:07 AM
Comment:
Hi satheesh,
Its good but repeat colomns property is not working properly on that,if i use table tag to display data in table format..
Title: Good Work ....   
Name: Mudassar C
Date: 2008-07-17 1:09:10 AM
Comment:
Hi Sateesh,
Its a really good article to read..
Good piece of Code..

Mudassar Chandle
Title: Data List And GridView   
Name: Santosh Kumar
Date: 2008-06-24 3:36:54 AM
Comment:
Hi Satheesh,
I read this article , good work done.
Santosh Kumar
http://www.operativesystems.com
Title: VB Please   
Name: Matt
Date: 2008-06-03 1:11:24 AM
Comment:
Any chance I can get this in VB?
Please
THanks
Matt
Title: problem with binding   
Name: Kannan
Date: 2008-05-15 2:51:40 AM
Comment:
All item template values displayed at once.no reapeated datalist display
Title: muhajiran bugok   
Name: muhajiran bugok
Date: 2008-05-09 6:43:36 AM
Comment:
this is very helpful..
-putang ina nyo lahat
Title: sivaram   
Name: sivaram
Date: 2008-02-04 1:47:59 AM
Comment:
Thanks.

hi i read your article.it is well and good article.

Product Spotlight
Product Spotlight 





Community Advice: ASP | SQL | XML | Regular Expressions | Windows


©Copyright 1998-2024 ASPAlliance.com  |  Page Processed at 2024-04-16 5:52:15 PM  AspAlliance Recent Articles RSS Feed
About ASPAlliance | Newsgroups | Advertise | Authors | Email Lists | Feedback | Link To Us | Privacy | Search