.NET 数据绑定列表

发布于 2024-09-03 04:09:52 字数 149 浏览 1 评论 0原文

有没有办法解决以下问题?

我有一些下拉列表绑定到 SQL Server 中的查找表。 由于这些字段中的数据与当前下拉列表数据不匹配,从旧版本系统导入的一些旧记录将无法打开。

除了将旧数据添加到查找表(我不想这样做)之外,还有其他方法可以解决这个问题吗?

Is there any way around the following?

I have a few dropdown lists bound to lookup tables in SQL Server.
Some old records imported from a previos version of the system won't open due to data in these fields not matching the current dropdown data.

Other than adding the old data to the lookup table (which I don't want to do), is there a way around this?

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

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

发布评论

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

评论(1

時窥 2024-09-10 04:09:52

我得到了它。笨拙但它有效,

当由于数据不再位于下拉列表中而无法打开页面时,我捕获了错误,然后:

list.Items.Insert(0, new_thing);
list.SelectedIndex = 0;

I got it. Clumsy but it works,

I catch the error when the page can't open due to the data not being in the dropdown any more, then:

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