Hi Richard,
In what order do you retrieve the Ntext / Blob from the database? There used to be (maybe still are) some problems with ADO when you requested the BLOB before other fields in the code.
So this would fail:
Code:
(SELECT Blob, AnInt FROM MyTable)
Response.Write(Recordset("Blob"))
Response.Write(Recordset("AnInt"))
while this would work:
Code:
(SELECT AnInt, Blob FROM MyTable)
Response.Write(Recordset("AnInt"))
Response.Write(Recordset("Blob"))
Hope this helps,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.