Ultra的功能强大,就是速度慢点

解决方案 »

  1.   

    貌似这个比较强大http://developer.yahoo.com/yui/datatable/
    演示(右边许多演示例子)
    http://developer.yahoo.com/yui/examples/datatable/dt_enhanced.html
      

  2.   

    Extjs 的Grid不过这个和通常的asp.net的webform有区别的 http://extjs.com/deploy/dev/examples/samples.html
    webgrid  http://www.webgrid.com/
    Devexpress的第三方控件 http://www.devexpress.com/Products/NET/Controls/WinForms/Grid/
      

  3.   

    Infragistics   NetAdvantage   For   .NEThttp://topic.csdn.net/u/20070405/17/b1f42675-d0d2-468e-9454-301a0006891a.html
      

  4.   

    DevExpress  我们一直都用它,很好很强大
      

  5.   


    AttributeUsageAttribute(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
        public class TalbeAttribute : Attribute
        {
            //保存表名的字段
            private string _tableName;        public TalbeAttribute()
            {
            }        public TalbeAttribute(string tableName)
            {
                this._tableName = tableName;
            }        /// <summary>
            /// 映射的表名(表的全名:模式名.表名)
            /// </summary>
            public string TableName
            {
                set
                {
                    this._tableName = value;
                }
                get
                {
                    return this._tableName;
                }
            }
        }