Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何借助动态 sql 查询将列添加到网格中。列名来自数据库。
我的代码是:
select Exam_Name from tbl_Exam_Type.
在这个 Exam_Name 中可以是:Unit-1、Unit-2、Quarterly 等...
输出:
Unit-1 Unit-2 Quarterly 69 73 85 like that
对于GridView控件,您可以在标记中使用AutoGenerateColumns设置为的属性,如下所示:trueGridView
GridView
AutoGenerateColumns
true
<asp:GridView id="GridView1" runat="server" AutoGenerateColumns="true"> ... </asp:GridView>
这将为您的绑定查询返回的每个字段创建一个列,并使用查询中使用的确切名称。