using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace JMDCMS.WebControls{
//[DefaultProperty("Text")]
[ToolboxData("<{0}:JMDGridView runat=server></{0}:JMDGridView>")]
public class JMDGridView : System.Web.UI.WebControls.GridView
{
public JMDGridView()
{
this.AllowPaging = true;
this.CssClass = "JMDGridView";
}
/*
[Bindable(true)]
[Category("Appearance")]
[DefaultValue("")]
[Localizable(true)]
public string Text
{
get
{
String s = (String)ViewState["Text"];
return ((s == null) ? String.Empty : s);
}
set
{
ViewState["Text"] = value;
}
}
protected override void RenderContents(HtmlTextWriter output)
{
output.Write(Text);
}
*/
}
}
|