我正在尝试在gridview上的命令按钮中添加工具类型,但我有点卡住了。
这是标记...
<asp:CommandField ButtonType="Link" ShowEditButton="true" EditText="!" ShowDeleteButton="true" DeleteText="3" CancelText="O" ItemStyle-CssClass="View1 View2 View3" ItemStyle-Width="45px" UpdateText="P">
<ControlStyle Font-Names="'WingDings 2'" ForeColor="Black" Font-Size="16px" />
</asp:CommandField>
当我在代码隐藏中断点并查看e.Row.Cells
中的内容时,它是DataControlLinkButton
的集合,但我似乎无法在文档中找到对此的任何引用,以查看是否存在{ {1}}我可以设置。
答案 0 :(得分:1)
您可以在RowDataBound
的{{1}}上进行设置。
我正在从我的某个实现中共享代码片段。
Gridview
希望这会有所帮助..