パラメーター変数が渡されない場合、このコードは「文字列 "" から型 'Date' への変換は無効です。」 という例外をスローします。
これは私のコードです。
Public Shared ReadOnly Property Request_projectStartDate() As Date
Get
Dim _value As String = Nothing
If Not HttpContext.Current.Request.QueryString("projectStartDate") Is Nothing Then
_value = HttpContext.Current.Request.QueryString("projectStartDate").ToString()
End If
Return CDate(_value)
End Get
End Property