How to pass hideen value using link button?

liunx

Guest
How to link the last two buttons called delete and penalites to another page and pass them playerno value ?
some thing similer to this one :

<td><td><a href = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"playerprofile.aspx?person_id=<%#Container.DataItem("playerno")%>"><%#Container.DataItem("playerno")%></a></td>

currenly the two buttons does not do much when they are click click. i want them to pass palayerno value to a a new page called for example secondpage.aspx
I be happy if some one help me fix those two buttons to do the right thing.Thanks
Here is my code:

<asp:DataGrid id="DBEditDataGrid" runat="server"
BorderWidth = "1" CellSpacing = "2" CellPadding = "2"
HeaderStyle-Font-Bold = "True"

OnEditCommand = "DBEditDataGrid_Edit"
OnCancelCommand = "DBEditDataGrid_Cancel"
OnUpdateCommand = "DBEditDataGrid_Update"

AutoGenerateColumns = "False"
>
<Columns>

<asp:BoundColumn HeaderText="PLAYERNO" DataField="PLAYERNO" ReadOnly="True" />
<asp:BoundColumn HeaderText="NAME" DataField="NAME" />
<asp:BoundColumn HeaderText="INITIALS" DataField="INITIALS" />
<asp:BoundColumn HeaderText="BIRTH_DATE" DataField="BIRTH_DATE" />
<asp:BoundColumn HeaderText="SEX" DataField="SEX" />
<asp:BoundColumn HeaderText="JOINED" DataField="JOINED" />
<asp:BoundColumn HeaderText="STREET" DataField="STREET" />
<asp:BoundColumn HeaderText="HOUSENO" DataField="HOUSENO" />
<asp:BoundColumn HeaderText="POSTCODE" DataField="POSTCODE" />
<asp:BoundColumn HeaderText="TOWN" DataField="TOWN" />
<asp:BoundColumn HeaderText="PHONENO" DataField="PHONENO" />
<asp:BoundColumn HeaderText="LEAGUENO" DataField="LEAGUENO" />

<asp:EditCommandColumn
HeaderText = "Edit"
EditText = "Edit"
CancelText = "Cancel"
UpdateText = "Update"
/>

<asp:EditCommandColumn
ButtonType="LinkButton"
UpdateText="Update"
CancelText="Cancel"
EditText="<IMG SRC=http://www.webdeveloper.com/images/Edit.gif Border=0 Width=12 Height=12>"
ItemStyle-HorizontalAlign="Center"
HeaderText="Delete">
</asp:EditCommandColumn>
<asp:EditCommandColumn
ButtonType="LinkButton"
UpdateText="Update"
CancelText="Cancel"
EditText="<IMG SRC=http://www.webdeveloper.com/images/Edit.gif Border=0 Width=12 Height=12>"
ItemStyle-HorizontalAlign="Center"
HeaderText="Penalties">
</asp:EditCommandColumn>
</Columns>
</asp:DataGrid>
 
Top