Forum Moderators: open
IE always draws the line break, even if there isn't any content. I've also notice this with forms, where IE will pad a line break at the top and/or bottom of a form.
My thought is that I might be able to use some sort of CSS to remedy the problem, but I'm wondering if anyone has any ideas, or even knows what I'm talking about! :)
thanks
I've solved in the past by doing something like this:
Instead of:
<p>Content Here
<%
'some code here
%>
More content here</p>
I put the delimiters right next to the content as such:
<p>Content Here<%
'some code here
%>More content here</p>
It's a bit messy but it does the job.