Select Case e.DataCol.Name Case "生产日期","保质天数" If e.DataRow.IsNull("生产日期") Then e.DataRow("到期日期") = Nothing Else e.DataRow("到期日期") = e.DataRow("生产日期").AddDays(e.DataRow("保质天数")) End IfEnd Select
我用了这段代码,但是只要输入生产日期,保质天数还没输入到期日期就是显示了生产日期,这是怎么的?