i want to edit the selected value in another page by click the row in the datagrid.

how can i pass the value? how can i call the other page?

i have this dgrid:
<asp:datagrid id="clientGrid" runat="server" cellPadding="5" PageSize="20" AutoGenerateColumns="False"
AllowSorting="True" Width="576px" AllowPaging="True" Height="144px">
<SelectedItemStyle Font-Size="XX-Small" Font-Names="Tahoma" Font-Bold="True" BackColor="WhiteSmoke"></SelectedItemStyle>
<AlternatingItemStyle Font-Size="XX-Small" Font-Names="Tahoma" BackColor="WhiteSmoke"></AlternatingItemStyle>
<ItemStyle Font-Size="XX-Small" Font-Names="Tahoma"></ItemStyle>
<HeaderStyle Font-Size="XX-Small" Font-Names="Arial" HorizontalAlign="Center"></HeaderStyle>
<Columns>
<asp:TemplateColumn>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<asp:linkbutton id="cmdView" runat="server">View</asp:linkbutton>
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<asp:linkbutton id="cmdEdit" runat="server">Edit</asp:linkbutton>
</ItemTemplate>
</asp:TemplateColumn>
<asp:BoundColumn DataField="CLIE_CODE" ReadOnly="True" HeaderText="CODE"></asp:BoundColumn>
<asp:BoundColumn DataField="CLIE_NAME" HeaderText="CLIENT NAME"></asp:BoundColumn>
<asp:BoundColumn DataField="CLIE_SENTBY" HeaderText="SENTBY"></asp:BoundColumn>
<asp:BoundColumn DataField="CLIE_ADDEDDATE" ReadOnly="True" HeaderText="DATE" DataFormatString="{0:d}"></asp:BoundColumn>
<asp:TemplateColumn>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<asp:linkbutton id="cmdDelete" runat="server">Delete</asp:linkbutton>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
<PagerStyle Font-Size="0.7em" Font-Names="Verdana" HorizontalAlign="Right" ForeColor="#FF0066"
Position="TopAndBottom" PageButtonCount="11" Mode="NumericPages"></PagerStyle>
</asp:datagrid>
what i want is if i clicked the edit linkbutton i will get the row informatin and open the edit page for that id.

TIA