Another kind of slacker way to deal with this is to add an additional ADOR that displays the <br/> tag, or not, depending on whether there is content in the data field. Then you place the ADOR for your text in the document, followed (in the code view) by the ADOR for the break.
So, for example, your first ADOR is "ADDRESS2" with the contents of simply
|->[ADDRESS2]
Your second ADOR is "ADDRESS2_BR" with the contents of:
if(Length(|->[ADDRESS2]) > 1)
{ "<br/>" }
else
{ "" }
And in the Dreamweaver code you place them end to end where you want the text to show:
<%# /* Text ADOR */ AdorRec.FieldValue("ADDRESS2", Container) %><%# /* Text ADOR */ AdorRec.FieldValue("ADDRESS2_BR", Container) %>Be sure to drag the
ADDRESS2_BR into the "code view " in Dreamweaver so that you don't end up with the text "<br/>" showing up on the page as text.
Then put your next line of text on the same line (i.e. not after a <br/> tag)
If they are both empty, then nothing shows in the Dreamweaver page in that area. If they are both full, you get your new text plus the line break.
Kristin