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、四半期などがあります...
出力:
Unit-1 Unit-2 Quarterly 69 73 85 like that
GridViewコントロールの場合、次のように、マークアップでAutoGenerateColumns属性セットを使用しtrueます。GridView
GridView
AutoGenerateColumns
true
<asp:GridView id="GridView1" runat="server" AutoGenerateColumns="true"> ... </asp:GridView>
これにより、バインド クエリによって返されるすべてのフィールドの列が、クエリで使用されている正確な名前で作成されます。