Click here to Skip to main content
15,910,981 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am having a accordion control of ajax which is consists of gridview on each panes.
One button is exist in gridview column as command control having command name="Send"
The event i work on is ItemCommand event of accordion . i have to find ID from gridviewrow which is bind as label on gridview on that particular button click.

till now i found only this, on ItemCommand event of Accordion control

if (e.CommandName == "SendToTraining")
{
AjaxControlToolkit.Accordion accUser = (AjaxControlToolkit.Accordion)sender;
GridView gdvAcc = accUser.Panes[0].FindControl("gdvTraining") as GridView;


}
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900