数据绑定到 SqlDataSource 时忽略大小写
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将 SQL 中的所有内容转换为较低版本即可解决此问题。不理想,但可以了。
Solved this by simply converting everything to lower in the SQL. Not ideal but it'll do.
如果您无权访问 SQL 或者不想更改查询,请从代码隐藏中执行此操作。
如果您想将第一个字母大写,请参阅:将数据库值输出到下拉列表中大写
If you don't have access to SQL or don't want to change your query then do this from code behind.
If you want to capitalize first letter see this : Output database values to dropdown in uppercase