如何使用VB.NET在Asp.Net中验证/保存日期?

时间:2017-08-18 10:51:37

标签: vb.net date

此代码用于保存日期

If(Not string.IsNullOrEmpty(Datetxt.text)) then
Sqlcmd.Parameters.Add("@dte",SqlDbType.Date)=datetxt.text.trim()
End If

我还必须添加哪些代码才能进行验证?

1 个答案:

答案 0 :(得分:0)

检查答案here

Dim dateValue As Date
If String.IsNullOrWhiteSpace(DobTxt.Text) Then
    SQLCmd.Parameters.Add("@DOB", SqlDbType.Date).Value = DBNull.Value
ElseIf Date.TryParse(DobTxt.Text.Trim(), dateValue) Then
    SQLCmd.Parameters.Add("@DOB", SqlDbType.Date).Value = dateValue
Else
    ' alert the user that there is invalid input
End If