Adding page breaks to results output?

I’d like to add page breaks to my C2E output so that when printed its a bit nicer, I was hoping that following code would achieve it but its not working:

HTML=@"<p style='page-break-before: always;'>";

Any clues ?

Cheers,
Chris

Try this:
HTML = "<br/>";

Does that work for you ?
It gives me the expected line break.

I just wanted to format my printed output a little but its no biggie.

Cheers.