Hello,
I'm getting the following error in my asp:
It says that it's happening at
in the following statement:
varTemp is the value of a field of a recordset that gets passed to it. Before this is called it checks to make sure that .eof is not true.
I know that the field isn't a BLOB field or text field, but I don't know much more about it as it's happening offsite and I can't replicate the problem here.
I've never had problems with that statement before.
Any suggestions?
Earme
I'm getting the following error in my asp:
Code:
(0x80020009)
Exception occurred
It says that it's happening at
Code:
If Trim(varTemp) = "" Then
Code:
Function RestoreNull(varTemp)
If Trim(varTemp) = "" Then
RestoreNull = Null
Else
RestoreNull = varTemp
End If
End Function
I know that the field isn't a BLOB field or text field, but I don't know much more about it as it's happening offsite and I can't replicate the problem here.
I've never had problems with that statement before.
Any suggestions?
Earme