Hi, I would greatly apprecitate it if someone could show me how format a record so that it can be print one record per page. I've tried the method below, but that is not exacly what i wanted. <dtml-in "getRecord()"> <dtml-var recordA newline_to_br> </dtml-in> Thanks, Mike
Mike Doanh Tran wrote at 2003-10-29 16:25 -0700:
I would greatly apprecitate it if someone could show me how format a record so that it can be print one record per page.
I've tried the method below, but that is not exacly what i wanted.
<dtml-in "getRecord()"> <dtml-var recordA newline_to_br> </dtml-in>
HTML is essentially a page-less languages. Search the HTML 4.1 specification for tags that may allow you to control paging. -- Dieter
On Thu, Oct 30, 2003 at 07:03:03PM +0100, Dieter Maurer wrote:
Mike Doanh Tran wrote at 2003-10-29 16:25 -0700:
I would greatly apprecitate it if someone could show me how format a record so that it can be print one record per page.
I've tried the method below, but that is not exacly what i wanted.
<dtml-in "getRecord()"> <dtml-var recordA newline_to_br> </dtml-in>
HTML is essentially a page-less languages.
Search the HTML 4.1 specification for tags that may allow you to control paging.
CSS might help here. Try http://www.w3.org/TR/CSS2/page.html Marius Gedminas -- "...the only place for 63,000 bugs is a rain forest"
I would greatly apprecitate it if someone could show me how format a record so that it can be print one record per page.
If you mean actual printing, then CSS is the way to go. There are ways to control pagination in the printed style. If you mean 'print' like 'publish to the web' then you'll want to look at the batching library. --jcc -- "My point and period will be throughly wrought, Or well or ill, as this day's battle's fought."
participants (4)
-
Dieter Maurer -
J. Cameron Cooper -
Marius Gedminas -
Mike Doanh Tran