Hello, Is there any way to pass this error?
Conversion failed when converting the varchar value 'NULL' to data type int.
My Code:
Thanx!
Conversion failed when converting the varchar value 'NULL' to data type int.
My Code:
VB.NET:
Dim employee As Integer
employee = Row.EmployeeId
Dim employeeString As String
If employee > 0 Then
employeeString = employee .ToString
Else
employeeString = "NULL"
End If
Thanx!
Last edited by a moderator: