使用动态SQL查询将列添加到网格中

时间:2013-11-11 12:36:41

标签: asp.net c#-3.0 c#-2.0

如何借助动态sql查询将列添加到网格中。列名来自数据库。

我的代码是:

select Exam_Name from tbl_Exam_Type.

在此Exam_Name中可以是: 1号机组,2号机组,季度等......

OutPut:

    Unit-1   Unit-2   Quarterly 
     69       73        85           like that

1 个答案:

答案 0 :(得分:1)

对于GridView控件,您使用AutoGenerateColumns标记中设置为true的{​​{1}}属性,如下所示:

GridView

这将为您的绑定查询返回的每个字段创建一个列,其中包含查询中使用的确切名称。