如何在DetailsView中显示特定记录?

发布于 2024-12-10 03:47:41 字数 208 浏览 3 评论 0原文

我有一个 DetailsView 控件,它绑定到 ObjectDataSource。在我的应用程序中,有一个 TextBox,用户在此文本框中输入 ID 并单击 SHOW RECORD 按钮,现在 DetailsView 应该显示该记录。

我无法在 DetailView 中显示该记录。
请帮忙。

I have a DetailsView control which is bind to a ObjectDataSource. In my application there is a TextBox, user enter ID in this textbox and clicks SHOW RECORD button, now DetailsView should show that record.

I am not able to show that record in DetailView.

Please Help.

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

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

发布评论

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

评论(1

怕倦 2024-12-17 03:47:41

也许是这样的?

_dataSet.Filter = String.Format("id = {0}", _textBox.Text);
_detailsView.DataSource = _dataSet;
_detailsView.DataBind();

Maybe something like this?

_dataSet.Filter = String.Format("id = {0}", _textBox.Text);
_detailsView.DataSource = _dataSet;
_detailsView.DataBind();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文