asp.net Gridview 用代码绑定列问题

首先将数据存储到dataset中,sql语句必须是(五列数据):select*fromtable但是我在gridview中如果只显示三列的数据,在后台怎么写代码绑定?... 首先将数据存储到dataset中,sql语句必须是(五列数据):select*from table 但是我在gridview 中如果只显示三列的数据,在后台怎么写代码绑定? 展开
 我来答
百度网友5456381
推荐于2016-02-08 · 超过126用户采纳过TA的回答
知道小有建树答主
回答量:451
采纳率:0%
帮助的人:251万
展开全部
自己定义数据列的格式,给个例子

#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
最后数据绑定,然后显示到前台
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式