I'm trying to open a new page by clicking on any cell of GridView
does anyone know if this is possible?
<table>
<tr>
<td>
<asp:GridView ID="GV_Gastos" runat="server" OnRowDataBound="GV_Gastos_RowDataBound" CssClass="grid-view" AutoGenerateColumns="False" AllowSorting="True" Font-Names="century gothic,small" Font-Size="Small" HorizontalAlign="Center" Width="1000px" DataSourceID="DS_Gastos" ShowFooter="True">
<HeaderStyle CssClass="HeaderRojo" />
<RowStyle CssClass="normal" />
<AlternatingRowStyle CssClass="alternate" />
<PagerStyle ForeColor="#CC0000" Font-Bold="true" />
<Columns>
<asp:BoundField DataField="GASTO" FooterText="Total" HeaderText="Tipo de Gasto" ReadOnly="True" SortExpression="GASTO" ItemStyle-Width="100px">
<FooterStyle Font-Bold="True" HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<ItemStyle BackColor="White" Font-Bold="True"/>
</asp:BoundField>
<asp:BoundField DataField="ANTERIOR" HeaderText="ANTERIOR" SortExpression="ANTERIOR" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
</asp:BoundField>
<asp:BoundField DataField="UNO" HeaderText="UNO" SortExpression="UNO" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle HorizontalAlign="Left" Width="15%" />
</asp:BoundField>
<asp:BoundField DataField="DOS" HeaderText="DOS" SortExpression="DOS" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" Width="10%" />
</asp:BoundField>
<asp:BoundField DataField="TRES" HeaderText="TRES" SortExpression="TRES" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
<asp:BoundField DataField="CUATRO" HeaderText="CUATRO" SortExpression="CUATRO" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
<asp:BoundField DataField="CINCO" HeaderText="CINCO" SortExpression="CINCO" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
<asp:BoundField DataField="SEIS" HeaderText="SEIS" SortExpression="SEIS" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
<asp:BoundField DataField="TOTAL" HeaderText="TOTAL" SortExpression="TOTAL" DataFormatString="{0:c}" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
<asp:BoundField DataField="RESPONSABLE" HeaderText="RESPONSABLE" SortExpression="RESPONSABLE" ItemStyle-Width="100px">
<HeaderStyle Font-Names="Century Gothic" Font-Size="Small" ForeColor="White" HorizontalAlign="Center"/>
<ItemStyle Font-Names="Century Gothic" Font-Size="Small" HorizontalAlign="Left" />
</asp:BoundField>
</Columns>
<RowStyle BorderColor="White" BorderStyle="Solid" BorderWidth="2px" Font-Bold="False" />
<FooterStyle BackColor="Red" Font-Bold="True" Font-Italic="False" ForeColor="White" />
<HeaderStyle BackColor="Red" Font-Bold="True" ForeColor="White" />
</asp:GridView>
<asp:SqlDataSource ID="DS_Gastos" runat="server" ConnectionString="ejemplo" SelectCommand="ejemplo" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Parameter DefaultValue="102" Name="ACCION" Type="Int32" />
<asp:ControlParameter ControlID="ejemplo" DefaultValue="ejemplo" Name="ejemplo" PropertyName="Value" Type="String" />
<asp:ControlParameter ControlID="ejemplo" DefaultValue="ejemplo" Name="ejemplo" PropertyName="Value" Type="String" />
<asp:ControlParameter ControlID="ejemplo" DefaultValue="" Name="IDRESPONSABLE" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
</td>
</tr>
</table>