P
Patrick Olurotimi Ige
How can i insert NULL below?
It says i can;t convert it to character!!
Dim MB As Char
If Request.Params("MB") = "True" Then
MB = "Y"
ElseIf Request.Params("MB") = "False" Then
MB = "N"
Else
MB = Convert.ToChar(DBNull.Value)
End If
It says i can;t convert it to character!!
Dim MB As Char
If Request.Params("MB") = "True" Then
MB = "Y"
ElseIf Request.Params("MB") = "False" Then
MB = "N"
Else
MB = Convert.ToChar(DBNull.Value)
End If