> Hello,
>     Is there a way to provide page breaks on JSP pages?
>
> thanks,
> Randy

With Internet Explorer you can use a CSS page-break-after. (I believe
this doesn't work for Netscape 4.x)
Read more on
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml
/reference/properties/pagebreakafter.asp

An example would be:
<STYLE>
    P { page-break-after: always }
</STYLE>
</HEAD>
<BODY>
First page
<P>
Also first page
</P>
Second page

Note that you will not see a "new page" on screen but only when printing
(or Print preview in IE 5.5).


  Mattias Jiderhamn
  Expert Systems
  [EMAIL PROTECTED]

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to