I am working with Dynamic/Custom control,
my Controls contain an accordion, inside this accordion i have Gridview, The Gridview has events Edit, Update.
When i Edit a Row and change a column value an press update, i did not get new column value in Updating event. I get old value of that column.
my Code is here.


                                   
                                       

                                           

                                   

                                   
                                       
                                   

                                   
                               


In Code behind on GridView_Rowupdating event.

Dim valueAs String = CType(GV_Parameter.Rows(RowIndex).FindControl("txt"), System.Web.UI.WebControls.TextBox).Text

i get old value as i enter new value in text box.