I am making a web site in visual studio 2012, using asp.net, c#. I created a grid view, which is taking data from my sql server, and created a button field which is bound to id_p, which is one of the collumns taken from a database. I am trying to get the data of the id_p for the row in which the button was clicked.
<asp:ButtonField ButtonType="Button" DataTextField="id_p"
DataTextFormatString="Stavi u košaricu" Text="Button1" />
What I need is not the selected row, only the id_p value, so how could I do that, please?
You need to handle the
OnRowCommand
Event on the gridview as so:And create a ItemTemplateField to display a regular
<asp:button>
instead of using theButtonField
column:Now you handle the RowCommand Event: