i've a few problem with GridView in asp.net ,
<asp:GridView
ID="gridAdministrator"
runat="server"
AllowSorting="true"
AutoGenerateColumns="false"
AllowPaging="true"
OnRowDeleting="gridAdministrator_RowDeleting" >
<Columns>
<asp:BoundField DataField="Id" HeaderText="ID" ReadOnly="true" />
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="Phone" HeaderText="Phone" />
<asp:BoundField DataField="Address" HeaderText="Address" />
<asp:BoundField DataField="City" HeaderText="City" />
<asp:BoundField DataField="Mail" HeaderText="Mail" />
<asp:BoundField DataField="Password" HeaderText="Password" />
<asp:TemplateField>
<ItemTemplate>
<a href="#" onclick="ShowPopUpAdmin();">Edit</a>
</ItemTemplate>
</asp:TemplateField>
<asp:CommandField ShowDeleteButton="true" />
</Columns>
</asp:GridView>
when i click Edit link, its will show up the edit AJAX popup panel, but how can i now, which row that being clicked? Any solution? Please help me.