UpdatePanel Gridview not updating

前端 未结 3 1755
心在旅途
心在旅途 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

    As an alternative, you could set the UpdateMode parameter to "Always" (which is the default) to allow any web control that triggers a postback to automatically update the GridView.

    This saves you a few lines of code (configuring the triggers) but will also help if you dynamically add controls to your GridView that will also trigger postback events on your page.

提交回复
热议问题