você pode substituir o enter por um caracter e depois quando for buscar o texto é só trocar o caracter por enter, estas duas funções são para vb, em tenho em asp, mas está em casa, acho que é pouco que tem que alterar para rodar em asp.
Private Function tiraenter(strTexto) As String
For i = 1 To Len(strTexto)
If Mid(strTexto, i, 2) = Chr(13) + Chr(10) Then
strTexto = Mid(strTexto, 1, i - 1) & "$" & Mid(strTexto, i + 2)
End If
Next i
tiraenter = strTexto
End Function
Private Function voltaenter(strTexto) As String
For i = 1 To Len(strTexto)
If Mid(strTexto, i, 1) = "$" Then
strTexto = Mid(strTexto, 1, i - 1) & Chr(13) + Chr(10) & Mid(strTexto, i + 1)
End If
Next i
voltaenter = strTexto
End Function