Hej,Buttonfield i Gridview
Bygger upp en gridview med ett buttonfield i. På min länk vill jag ha ett event men jag kommer inte åt eventet när jag debuggar. Har sökt runt och kan inte heller se något fel i min kod. Är det någon som har ett förslag? tack på förhand för svar!
Koden:
//Button field for selecting the row.
ButtonField selection = new ButtonField();
selection.Text = "Select";
selection.ButtonType = ButtonType.Link;
selection.CommandName = "select";
GridViewSearchResult.Columns.Add(selection);
GridViewSearchResult.RowCommand += new GridViewCommandEventHandler(GridViewSearchResult_RowCommand);
GridViewSearchResult.AutoGenerateColumns = false;
GridViewSearchResult.DataSource = table.DefaultView;
GridViewSearchResult.DataBind();
}
void GridViewSearchResult_RowCommand(object sender, GridViewCommandEventArgs e)
{
throw new NotImplementedException();
}