Click here to Skip to main content
15,881,092 members
Articles / Web Development / ASP.NET

Advanced Paging GridView with ASP.NET 2.0/3.5

Rate me:
Please Sign up or sign in to vote.
3.68/5 (13 votes)
7 Nov 2008CPOL 94.1K   2.3K   49  
Advanced paging GridView with ASP.NET 2.0/3.5
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;


namespace WizardGridView
{
    /// <summary>
    /// 此類別僅作為輔助 WizardGridView 控制項的 IntelliSense 使用,未開放給開發人員在程式中引用。
    /// </summary>
    [ToolboxData("<{0}:WizardTemplateField runat=server></{0}:WizardTemplateField>")]
    public class WizardTemplateField : System.Web.UI.WebControls.TemplateField
    {
        public WizardTemplateField()
        {
            //
            // TODO: 在此加入建構函式的程式碼
            //
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Taiwan Taiwan
A young programmer in Taipei City, Taiwan. Earn little money and just coding for fun.

Comments and Discussions