show/hide this revision's text 2 edited body

You need to use a ButtonField and handle the click in RowCommand. Check the MSDN docs

 <asp:buttonfield buttontype="Link" 
                  commandname="Add" 
                  text="Add"/>

And in the code behind...

  void ContactsGridView_RowCommand(Object sender, GridViewCommandEventArgs e)
  {
    if(e.CommandName=="Add")
    {
         AddFriend DataBinder.Eval(Container.DataItemAddFriend(DataBinder.Eval(Container.DataItem, "Price""UserName"));
    }
  }
show/hide this revision's text 1

You need to use a ButtonField and handle the click in RowCommand. Check the MSDN docs

 <asp:buttonfield buttontype="Link" 
                  commandname="Add" 
                  text="Add"/>
void ContactsGridView_RowCommand(Object sender, GridViewCommandEventArgs e) { if(e.CommandName=="Add") { AddFriend DataBinder.Eval(Container.DataItem, "Price""UserName")); }