为什么取不到GridView表头字串?
<asp:GridView ID="GridView1" runat="server" AllowSorting="false"></asp:GridView>
可以取出表头字串
TextBox1.Text = GridView1.HeaderRow.Cells[0].Text;
但是把AllowSorting设为True时却取不到表头字串,这是为何?
<asp:GridView ID="GridView1" runat="server" AllowSorting="Ture">
</asp:GridView>
取出的表头字串为空值
TextBox1.Text = GridView1.HeaderRow.Cells[0].Text;
--------------------编程问答-------------------- 找一下:
http://www.cnblogs.com/insus/tag/GridView/ --------------------编程问答-------------------- 就是在Gridview属性为AllowSorting="Ture"情况下取表头字串。
有谁知道吗,请指点!
补充:.NET技术 , ASP.NET