UpdatePanel Gridview not updating

前端 未结 3 1708
心在旅途
心在旅途 2021-01-13 22:12

For some reason, I can\'t get the Gridview in the Updatepanel to refresh after I\'ve made changes. can someone help?

I\'m using the ToolkitScriptManager control and

3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-13 22:37

    change the order:

     GridView1.DataBind();
     UpdatePanel1.Update();
    

提交回复
热议问题