本文介绍了动态添加网格中的行和列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所有如何使用vb.net代码动态添加网格中的行和列.请给我一些示例代码
hi all how to add rows and coloumn in grid dynamically by using vb.net code.please give me some example code
推荐答案
<asp:GridView ID="GridView1" runat="server"
BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px"
CellPadding="3" AutoGenerateColumns="False" Height="122px" Width="544px">
<RowStyle ForeColor="#000066" />
<Columns>
<asp:BoundField HeaderText="Name" DataField="Name" />
<asp:BoundField HeaderText="Mobile Number" DataField="Mobile Number" />
<asp:BoundField HeaderText="Email ID" DataField="Email ID"/>
<asp:BoundField HeaderText="Comment" DataField="Comment"/>
</Columns>
<FooterStyle BackColor="White" ForeColor="#000066" />
<PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
<SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" />
</asp:GridView>
这篇关于动态添加网格中的行和列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!