怎样在gridview里面加一个"查看详细资料"的按钮
我的gridview 和一个datatable 进行绑定datatable 的数据是从数据库中搜索查找回来的.我想给用户提供对返回数据的修改功能.
希望gridview在显示的同时在后面添加一个类似"查看详细"的按钮,并绑定按钮的click事件,可以怎么做? --------------------编程问答-------------------- <asp:TemplateField HeaderText="操作">
<ItemTemplate>
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="YourName" CommandArgument='<%# DataBinder.Eval(Container.DataItem,"PK名") %>' Text="查看详细资料"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
响应 GridView1_RowCommand事件,
判断
if (e.CommandName == "YourName")
{
e.CommandArgument 可以或者pk值
}
补充:.NET技术 , ASP.NET