与自定义表达式的两种方式绑定?
我在我的 asp.net 项目中使用 gridview 来查看和修改数据库中的一些记录。数据库有两列:start_date 和 end_date。创建新记录时,这些列包含 null,但稍后可以使用 gridview update 命令修改它们。
在 gridview 中,我有两个模板字段(名称为 start_date 和 end_date),我在其中放置了两个日历控件。单击 gridview 的更新链接后,由于绑定到日历的空值,它总是返回错误。我已经使用这个辅助函数来解决它:
protected DateTime ReplaceNull(Object param)
{
if (param.Equals(DBNull.Value))
{
return DateTime.Now;
}
else
{
return Convert.ToDateTime(param);
}
}
并在日历控件的 SelectedDate 中使用了这两个自定义表达式:
ReplaceNull(Eval("start_date"))
ReplaceNull(Eval("end_date"))
问题是在选择日期时绑定日历的双向数据不会更新数据库表。有什么解决方法吗?或者,更好的解决方案将不胜感激。
I am using a gridview in my asp.net project to view and modify some records from the database. The database has two columns: start_date and end_date. When a new record is created these columns contains null, but they can be modified later using the gridview update command.
In gridview I have two template fields (having names start_date and end_date) in which I have placed two calendar controls. Upon clicking an update link of gridview it always returns an error because of the null value binding to the calendar. I have used this helper function to solve it:
protected DateTime ReplaceNull(Object param)
{
if (param.Equals(DBNull.Value))
{
return DateTime.Now;
}
else
{
return Convert.ToDateTime(param);
}
}
and used these two custom expressions in calendar control's SelectedDate:
ReplaceNull(Eval("start_date"))
ReplaceNull(Eval("end_date"))
The problem is that two-way data binding the calendars upon selecting a date does not update the database table. Are there any workarounds? Or alternatively, a better solution would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道为什么在插入新记录时让它们为空,但我认为有很多方法可以解决这个问题。
其中之一:在
Gridview
的RowDataBound
事件中或者:你可以捕获异常,你在 的更新按钮。
通过
try and catch 块
I don't know why you let them null when insert a new record , but many ways you can solve this problem i think .
one of them : in the
RowDataBound
event of theGridview
Or: you can catch the exception , you meet in your Update button through
try and catch block
.