ObjectDataSource - 如何仅在按下按钮时绑定
我有一个按钮,按下该按钮会用数据填充网格。如果我添加一个 ObjectDataSource 并将网格绑定到它,它将在页面加载时填充网格。但仅当按下按钮时我才需要填充网格,因为这是一个漫长的操作。我应该如何完成这个
I have a button, which when presses populates a grid with data. If I add an ObjectDataSource, and bind the grid to it, it will populate the grid when the page loads. But I need to populate the grid only if the button is pressed, because it is a lengthy opperation. How should I accomplish this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向 ObjectDataSource 的 Selecting 事件添加一个事件处理程序,如下所示:
并在页面上放置一个按钮,单击该按钮时将发生回发,并且 ObjectDataSource 将成功返回数据。
add an event handler to ObjectDataSource's Selecting event like this:
and put a button on page, when it was clicked a postback will occur and ObjectDataSource will return data successfully.