asp.net Gridview 用代码绑定列问题
首先将数据存储到dataset中,sql语句必须是(五列数据):select*fromtable但是我在gridview中如果只显示三列的数据,在后台怎么写代码绑定?...
首先将数据存储到dataset中,sql语句必须是(五列数据):select*from table 但是我在gridview 中如果只显示三列的数据,在后台怎么写代码绑定?
展开
1个回答
展开全部
自己定义数据列的格式,给个例子
#region 一种格式
public struct colAlarmInfo //定义结构变量
{
public bool Readonly;//只读
public string mappName;//显示名称
public string headText;
public string nullText;
public int width;//宽度
public System.Windows.Forms.HorizontalAlignment Alignement;//对齐方式
public colAlarmInfo(bool ReadOnly, string mappName, string nullText, int width,
System.Windows.Forms.HorizontalAlignment Alignment, string headText)
{
this.Readonly = ReadOnly;
this.mappName = mappName;
this.nullText = nullText;
this.width = width;
this.Alignement = Alignment;
this.headText = headText;
}
}
#endregion
然后做个列集合,设置每个列的属性,添加到Gridview
最后数据绑定,然后显示到前台
#region 一种格式
public struct colAlarmInfo //定义结构变量
{
public bool Readonly;//只读
public string mappName;//显示名称
public string headText;
public string nullText;
public int width;//宽度
public System.Windows.Forms.HorizontalAlignment Alignement;//对齐方式
public colAlarmInfo(bool ReadOnly, string mappName, string nullText, int width,
System.Windows.Forms.HorizontalAlignment Alignment, string headText)
{
this.Readonly = ReadOnly;
this.mappName = mappName;
this.nullText = nullText;
this.width = width;
this.Alignement = Alignment;
this.headText = headText;
}
}
#endregion
然后做个列集合,设置每个列的属性,添加到Gridview
最后数据绑定,然后显示到前台
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询