Clicking the button (btn_goToPoint) in my gridview is not intercepted. There is a load but the redirection does not work. When I put a breakpoint in the back code (grd_points_rowCommand), the code is not executed there. Before when I clicked on the button I had an error that I solved with "EnableEventValidation =" false "". I do not find the problem because I use exactly the same thing on other page of my application and it works.
<asp:GridView ID="grd_points" runat="server" CssClass="mydatagrid" PagerStyle-CssClass="pager"
HeaderStyle-CssClass="header" RowStyle-CssClass="rows"
AutoGenerateColumns="False" DataKeyNames="POI_id"
DataSourceID="ERP_pointsByQuestion"
OnRowDataBound = "grd_points_RowDataBound"
OnRowCommand="grd_points_RowCommand">
<Columns>
<asp:BoundField DataField="POI_id" HeaderText="Num." ReadOnly="True"
SortExpression="POI_id" />
<asp:BoundField DataField="POI_situation" HeaderText="Situation"
SortExpression="POI_situation" />
<asp:BoundField DataField="c_evalPoint" HeaderText="Eval."
SortExpression="c_evalPoint" />
<asp:BoundField DataField="EVA_couleur" HeaderText="Couleur"
SortExpression="EVA_couleur" />
<asp:BoundField DataField="USE_cdsid" HeaderText="Responsable"
SortExpression="USE_cdsid" />
<asp:BoundField DataField="POI_dateRevision" HeaderText="Date Révision"
SortExpression="POI_dateRevision" />
<asp:TemplateField>
<ItemTemplate>
<asp:Button class="btn btn-primary" ID="btn_goToPoint" runat="server"
CommandName="goToPoint"
CommandArgument="<%# ((GridViewRow) Container).RowIndex %>"
Text="►" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
And the back code:
protected void grd_points_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "goToPoint")
{
int index = Convert.ToInt32(e.CommandArgument);
GridViewRow row = grd_points.Rows[index];
string value = row.Cells[0].Text;
Response.Redirect("gest_point.aspx?point=" + value);
}
}