AJAX 日历扩展器 - 将 null 绑定到文本作为所选日期
我在 ASP.NET Repeater 中有一个 AJAX Calendar Extender,它绑定表中的日期数据并允许用户更改它。但是我有一个问题 - 如果日期为空,它会返回错误,因为它无法将空绑定为选定日期。有什么办法可以解决这个问题吗?
谢谢
I have an AJAX Calendar Extender inside an ASP.NET Repeater, which binds date data from a table and allows users to change this. I have an issue however - if the date is null, it returns an error as it cannot bind null as a selected date. Are there any ways around this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为其他遇到问题的人解决了这个问题 - 不要在 ASP.NET 代码中设置选定的值,而是在后面的代码中绑定行时设置它,因此仅当它不为空时才进行绑定。
Sort of worked around the issue for anyone else having problems - don't set the selected value in the ASP.NET code, set it when the row is bound in the code behind, so you bind only if it's not null.