ObjectDataSource - 如何仅在按下按钮时绑定

发布于 2024-10-17 06:24:58 字数 113 浏览 1 评论 0原文

我有一个按钮,按下该按钮会用数据填充网格。如果我添加一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落画卷 2024-10-24 06:24:58

向 ObjectDataSource 的 Selecting 事件添加一个事件处理程序,如下所示:

protected void ObjectDataSource1_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
{
    if (!IsPostBack)
    {
       e.Cancel = true;
    }
}

并在页面上放置一个按钮,单击该按钮时将发生回发,并且 ObjectDataSource 将成功返回数据。

add an event handler to ObjectDataSource's Selecting event like this:

protected void ObjectDataSource1_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
{
    if (!IsPostBack)
    {
       e.Cancel = true;
    }
}

and put a button on page, when it was clicked a postback will occur and ObjectDataSource will return data successfully.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文