ASP.NET SqlDataSource 缓存集合

发布于 2024-12-03 12:26:12 字数 192 浏览 0 评论 0原文

加载 sqldatasource 中的项目后,是否可以以编程方式访问它们? 上下文:sqldatasource 绑定到复选框列表。提交后,我有所选项目的 ID,但我还需要其他信息。因此,如果我可以访问 SqlDataSource 中加载的项目就足够了。

我知道这不是很清楚,我是 ASP.NET 的新手,它如此违反直觉。

Is it possible to programmatically access items in sqldatasource once they are loaded?
Context: sqldatasource is binded to list of checkboxes. When submitted, I have id of selected item, but I also need other information. So if I could acces loaded items in SqlDataSource that would suffice.

i know this is not very clear, I'm new to asp.net and it's so counter-intuituve.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

落叶缤纷 2024-12-10 12:26:12

只要 sqlDataSource 已设置为缓存数据 (DataSourceMode="DataSet" EnableCaching="True")(请参阅 使用 SqlDataSource 控件缓存数据),然后您可以在代码中使用 sqlDataSource 选择缓存的项目,如下所示:

DataView dataView = (DataView)sqlDataSource.Select(new DataSourceSelectArguments());
DataTable dataTable = dataView.ToTable();

DataSourceSelectArguments 类提供了一种指定 SortExpression 等的方法事物。

希望这有帮助。

As long as the sqlDataSource has been setup to Cache the data (DataSourceMode="DataSet" EnableCaching="True") (See Caching Data with the SqlDataSource Control) then you can select cached items using the sqlDataSource in code like so:

DataView dataView = (DataView)sqlDataSource.Select(new DataSourceSelectArguments());
DataTable dataTable = dataView.ToTable();

The DataSourceSelectArguments class provides a means to specify the SortExpression amongst other things.

Hope this helps.

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