数据绑定到 SqlDataSource 时忽略大小写

发布于 2024-10-22 18:14:21 字数 115 浏览 1 评论 0原文

我有一个 DropDownList,它将其 SelectedValue 绑定到 SqlDataSource 中的字段。但是,我需要它在数据绑定时忽略大小写,就好像它的大小写不正确一样,我收到了很多错误。这容易实现吗?

I have a DropDownList which binds its SelectedValue to a field from an SqlDataSource. However, I need it to ignore the case when data binding, as if it's not in the correct case I recieve a lot of errors. Is this easily achievable?

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

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

发布评论

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

评论(2

冷清清 2024-10-29 18:14:21

只需将 SQL 中的所有内容转换为较低版本即可解决此问题。不理想,但可以了。

Solved this by simply converting everything to lower in the SQL. Not ideal but it'll do.

风吹雨成花 2024-10-29 18:14:21

如果您无权访问 SQL 或者不想更改查询,请从代码隐藏中执行此操作。

.............
dropDown.DataBind();

foreach (ListItem t in dropDown.Items)
    t.Text = t.Text.ToUpper();// or t.Text.ToLower()

如果您想将第一个字母大写,请参阅:将数据库值输出到下拉列表中大写

If you don't have access to SQL or don't want to change your query then do this from code behind.

.............
dropDown.DataBind();

foreach (ListItem t in dropDown.Items)
    t.Text = t.Text.ToUpper();// or t.Text.ToLower()

If you want to capitalize first letter see this : Output database values to dropdown in uppercase

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