Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Easy question

Status
Not open for further replies.

ebarratt

Programmer
Apr 10, 2002
53
US
Hey all,

I forgot the html tag for a page break. I'm traversing through a recordset and after it goes through one user and to the next one in the record I want the page to break for print purposes. So when I do a print() command the print out comes out on a different page for each user. What is the html tag for a page break?


Thanks all. Errol Barratt
856-697-1593
New Jersey
 
<BR> does a line break which skips to the next line. I was wondering if you knew the tag that makes the page skip down i guess it would be 52 lines hehe a page break not line break. Errol Barratt
856-697-1593
New Jersey
 
<BR> is a basic page break in HTML which inserts a line in the page.
CSS way
<STYLE TYPE=&quot;text/css&quot;>
P.breakhere {page-break-before: always}
</STYLE>
<body>
<P CLASS=&quot;breakhere&quot;>

This will give you less space in the line.(page break) I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
 
In you ASP it would look like this in case
Response.Write(&quot;<BR>&quot;)
or dpo the same for the CSS I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top