I am entering error information into an ErrorLog table in my database. I have a utility class to do this:
ErrorHandler.Error(\"Something has broken!!\\n\\nDe
try using char(13) + char(10) instead of '\n' in your string (define a constant and concatenate to your sql)
char(13) + char(10)