Click here to Skip to main content
15,921,179 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Team,


I have asp 2008 and in my page created the gridview dynamically and added textbox (dynamically ) in gridview cells. Created the event as below. from below rowdatabound and rowcreated event fring, but when i clicked on the cell of gridview the "SelectedIndexChanged" event not fring.


Kindly help me to solve this. I need to do some task when user clicked on a cell.



GridView GrdView_Data = new GridView();
GrdView_Data.RowDataBound += new GridViewRowEventHandler(GrdView_Data_RowDataBound);
GrdView_Data.RowCreated += new GridViewRowEventHandler(GrdView_Data_RowDataBound);

GrdView_Data.SelectedIndexChanged += new EventHandler(GrdView_Data_SelectedIndexChanged);
Posted
Comments
Nivas82 22-Feb-13 23:05pm    
pls help me for soln for suggestion

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