Hi there,
This is a bit odd indeed, and looks a bit like other known issues with BLOB fields (
http://support.microsoft.com/default...NoWebContent=1).
One thing to work around this, is to assign the value of the BLOB Memo) field to a variable and use that in your code:
Code:
Dim BodyText
BodyText = rs("memo")
If Len(BodyText) > 0
Response.Write("Show me " & BodyText)
End If
This way the Memo field is only accessed once, while you still have full functionality.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.