我正在使用asp.net,c#在visual studio 2012中创建一个网站。 我创建了一个网格视图,它从我的sql server获取数据,并创建了一个绑定到id_p的按钮字段,这是从数据库中获取的一个列。我正在尝试获取单击按钮的行的id_p数据。
<asp:ButtonField ButtonType="Button" DataTextField="id_p"
DataTextFormatString="Stavi u košaricu" Text="Button1" />
我需要的不是所选行,只有id_p值,所以我该怎么办呢?
答案 0 :(得分:0)
您需要在gridview上处理OnRowCommand
事件,如下所示:
<asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView_RowCommand"
创建一个ItemTemplateField以显示常规<asp:button>
,而不是使用ButtonField
列:
<asp:TemplateField>
<ItemTemplate>
<asp:Button ID="btn" runat="server"
CommandName="Something" CommandArgument='<%#Eval("id_p") %>'
Text="Stavi u košaricu" />
</ItemTemplate>
</asp:TemplateField>
现在您处理RowCommand事件:
protected void GridView_RowCommand(Object sender, GridViewCommandEventArgs e)
{
string m_id = e.CommandArgument.ToString();
if (e.CommandName == "Something")
{
//do something with m_id
}
}