It's possible in HTML (or PHP or other) to force a webpage be printed in many pages where I want.
Like in MS Word there is CTRL+ENTER to force make a new page.
What command can helps me? THANKS
You can use:
onLoad=self.print()
in your <body> tag.
So it would look like:
<body onLoad=self.print()>
Derek
I think what he meant what how to force a page break (not physical print page).
I believe you can do this w/ .css
I'm not sure, however, where I read that (maybe that code monkey site, or dynamic drive).
check this link out: http://msdn.microsoft.com/workshop/Author/dynstyle/printing.asp
allan
I find it. It Works right. Thanks all.