在asp.net中,当你在gridview上有一个autogenreated选择按钮时,是否可以将它的文本从'select'更改为你选择的其他东西?如果有的话,谁能指点我一个例子?在gridview上选择按钮 - asp.net
再次感谢
在asp.net中,当你在gridview上有一个autogenreated选择按钮时,是否可以将它的文本从'select'更改为你选择的其他东西?如果有的话,谁能指点我一个例子?在gridview上选择按钮 - asp.net
再次感谢
检查这个类似的问题:
Changing text of an autogenerated select column of a gridview in asp.net - How?
例子:
<asp:buttonfield buttontype="Button"
commandname="Select"
headertext="Select Customer"
text="SelectText"/>
为此欢呼! – DarkW1nter
你的欢迎:) –
<asp:GridView ID="gvSearch" runat="server" Visible="False"
OnPageIndexChanging="Grid_Changing" AllowPaging="True" AllowSorting="True"
AutoGenerateSelectButton="True" CellPadding="4" Font-Names="Arial"
Font-Size="XX-Small" ForeColor="#333333" GridLines="None"
onselectedindexchanged="gvSearch_SelectedIndexChanged" PageSize="100">
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
你能为你的网格的代码? –
嗨我已经将它包含在下面的答案 – DarkW1nter