protected void GVCustomerPlan_RowCommand1(object sender, GridViewCommandEventArgs e)
{
if(e.commandname == "xyz")
{
GridViewRow row = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
Label lblProdId = (Label)row.FindControl("lblproductId");
}
}