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"));
}
}
