以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- 日期类型值为空的判断 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=124540)
|
-- 作者:susu312
-- 发布时间:2018/9/8 18:19:00
-- 日期类型值为空的判断
Dim partyTime As Date = e.Form.Controls("partyTime").Value Dim retireTime As Date = e.Form.Controls("retireTime").Value Dim workdate As Date = e.Form.Controls("workdate").Value Dim birth As Date = e.Form.Controls("birth").Value
如何判断出,对应的时间输入框中输入的时间为空
partyTime =“”貌似不行
|
-- 作者:cbt
-- 发布时间:2018/9/8 18:24:00
--
partyTime is nothing
|
-- 作者:susu312
-- 发布时间:2018/9/8 18:28:00
--
以下是引用cbt在2018/9/8 18:24:00的发言: partyTime is nothing
此主题相关图片如下:1.png
|
-- 作者:cbt
-- 发布时间:2018/9/8 18:30:00
--
partyTime >\'1900-01-01\'
|
-- 作者:cbt
-- 发布时间:2018/9/8 18:31:00
--
e.Form.Controls("partyTime").Value is nothing
|
-- 作者:有点甜
-- 发布时间:2018/9/9 14:53:00
--
If partyTime = nothing Then
End If
|