I'm not 100% sure what you're trying to do, but if you want the <BR> in to make sure there are line gaps when you output the date you could also just do this:
When you output the text from a db, read the relevant entry in to a string and then output it using:
<%=replace(ReadFile, VbCrLf, "<br>")%>
This will replace any carriage return with a <BR> automatically. You could also change it to add paragraphs or some other formatting.
Hope that helps,
Cass