c# - gridview in bootstrap modal popup issue -
i used bootstrap modal popup , in there need implement gridview. using update panel,i added gridview , databinding working properly. in gridview row, there textbox user can modify existing values , update save button outside gridview.
but when fire save button command @ server side, not getting updated values instead getting old values looping gridview rows controls.
how updated values of textbox in gridview inside bootstrap modal popup? have used update panel also.
please suggest.
in save button event, make sure refreshing gridview content adding databind() once have saved new values
yourgridview.datasource = thesource; yourgridview.databind();
Comments
Post a Comment