473,396 Members | 1,714 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Header AND Footer?

Hi is there any simple way to get a footer in an html page? so that
when it comes to print, that footer is on EVERY page, just as whatever
you put in the <headtag is at the top of every page printed.

thanks
Feb 18 '08 #1
8 2074
On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
Hi is there any simple way to get a footer in an html page?
No.

You can do this (and do it well) with XSL:FO, which is much more
complicated but is targetted more for print-based output and has far
better features for this sort of task. Not much use on the web though.

You could also try <tablemarkup and using <theadand <tfoot>
elements. In _some_ contexts, these may be printed as repeated headers
and footers for each page that the table spans. Note though that this
has two drawbacks: It's far from reliable (print handling
implementation in HTML is usually poor and this behaviour isn't a
mandatory requirement anyway.) Secondly it's a clear abuse of <table>
as a purely layout feature.

Feb 18 '08 #2
On Feb 18, 1:23*pm, Andy Dingley <ding...@codesmiths.comwrote:
On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
Hi is there any simple way to get a footer in an html page?

No.

You can do this (and do it well) with XSL:FO, which is much more
complicated but is targetted more for print-based output and has far
better features for this sort of task. Not much use on the web though.

You could also try <tablemarkup and using <theadand <tfoot>
elements. In _some_ contexts, these may be printed as repeated headers
and footers for each page that the table spans. Note though that this
has two drawbacks: It's far from reliable (print handling
implementation in HTML is usually poor and this behaviour isn't a
mandatory requirement anyway.) Secondly it's a clear abuse of <table>
as a purely layout feature.
thanks for the help - will take a look

i'm 99% sure whatever is in the head tag appears at the top of every
page
Feb 19 '08 #3
sa************@yahoo.co.uk wrote:
On Feb 18, 1:23 pm, Andy Dingley <ding...@codesmiths.comwrote:
>On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
>>Hi is there any simple way to get a footer in an html page?
No.

You can do this (and do it well) with XSL:FO, which is much more
complicated but is targetted more for print-based output and has far
better features for this sort of task. Not much use on the web though.

You could also try <tablemarkup and using <theadand <tfoot>
elements. In _some_ contexts, these may be printed as repeated headers
and footers for each page that the table spans. Note though that this
has two drawbacks: It's far from reliable (print handling
implementation in HTML is usually poor and this behaviour isn't a
mandatory requirement anyway.) Secondly it's a clear abuse of <table>
as a purely layout feature.

thanks for the help - will take a look

i'm 99% sure whatever is in the head tag appears at the top of every
page
You have a browser that prints the META and LINK tags at the top of each
page?
Feb 19 '08 #4
i'm getting worried now, just tried it on my office pc and...as you
all said, it didn't work, will check out the one i did at home.
btw all this is for a replacement for the reports that are made in
access, my reports are quite complicated, and very frustating to put
together and edit in access, so i thought i'd try and move to html,
but obviously the headers and footers are going to be an issue.

Is xsl:fo THE solution for reports then? is it easy to learn?

thanks
On Feb 19, 11:50*am, Harlan Messinger
<hmessinger.removet...@comcast.netwrote:
salmanjavah...@yahoo.co.uk wrote:
On Feb 18, 1:23 pm, Andy Dingley <ding...@codesmiths.comwrote:
On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
>Hi is there any simple way to get a footer in an html page?
No.
You can do this (and do it well) with XSL:FO, which is much more
complicated but is targetted more for print-based output and has far
better features for this sort of task. Not much use on the web though.
You could also try <tablemarkup and using <theadand <tfoot>
elements. In _some_ contexts, these may be printed as repeated headers
and footers for each page that the table spans. Note though that this
has two drawbacks: It's far from reliable (print handling
implementation in HTML is usually poor and this behaviour isn't a
mandatory requirement anyway.) Secondly it's a clear abuse of <table>
as a purely layout feature.
thanks for the help - will take a look
i'm 99% sure whatever is in the head tag appears at the top of every
page

You have a browser that prints the META and LINK tags at the top of each
page?- Hide quoted text -

- Show quoted text -
Feb 19 '08 #5
sa************@yahoo.co.uk wrote:
On Feb 19, 11:50 am, Harlan Messinger
<hmessinger.removet...@comcast.netwrote:
>salmanjavah...@yahoo.co.uk wrote:
>>On Feb 18, 1:23 pm, Andy Dingley <ding...@codesmiths.comwrote:
On 18 Feb, 09:09, salmanjavah...@yahoo.co.uk wrote:
Hi is there any simple way to get a footer in an html page?
No.
You can do this (and do it well) with XSL:FO, which is much more
complicated but is targetted more for print-based output and has far
better features for this sort of task. Not much use on the web though.
You could also try <tablemarkup and using <theadand <tfoot>
elements. In _some_ contexts, these may be printed as repeated headers
and footers for each page that the table spans. Note though that this
has two drawbacks: It's far from reliable (print handling
implementation in HTML is usually poor and this behaviour isn't a
mandatory requirement anyway.) Secondly it's a clear abuse of <table>
as a purely layout feature.
thanks for the help - will take a look
i'm 99% sure whatever is in the head tag appears at the top of every
page
You have a browser that prints the META and LINK tags at the top of each
page?- Hide quoted text -
i'm getting worried now, just tried it on my office pc and...as you
all said, it didn't work, will check out the one i did at home.
btw all this is for a replacement for the reports that are made in
access, my reports are quite complicated, and very frustating to put
together and edit in access, so i thought i'd try and move to html,
but obviously the headers and footers are going to be an issue.

Is xsl:fo THE solution for reports then? is it easy to learn?
As was mentioned, it isn't much use on the Web. AFAIK there is no
browser support.

How about using Word?
Feb 19 '08 #6
On 19 Feb, 13:32, salmanjavah...@yahoo.co.uk wrote:
Is xsl:fo THE solution for reports then?
Works for me! It's my favoured route for "some database stuff" out
to PDFs (or other formats) with a lot of control over paper-based
typography.
is it easy to learn?
There's a lot of it.

_If_ you already know XML, XSLT and CSS, then it's pretty easy. XSL:FO
is written in XML, you'll most likely generate it with XSLT and the
rendering model is pretty close to CSS (with extensions for paged
media). If you don't know all three of these beforehand, then that's a
lot of learning for one project. It's all good stuff you'll not regret
having spent the effort on afterwards, but there's a lot of it.

OTOH, it's far less ugly than Crystal and at least you'll learn
something useful.
Feb 19 '08 #7
On Feb 19, 3:50*pm, Andy Dingley <ding...@codesmiths.comwrote:
On 19 Feb, 13:32, salmanjavah...@yahoo.co.uk wrote:
Is xsl:fo THE solution for reports then?

Works for me! * It's my favoured route for "some database stuff" out
to PDFs (or other formats) with a lot of control over paper-based
typography.
is it easy to learn?

There's a lot of it.

_If_ you already know XML, XSLT and CSS, then it's pretty easy. XSL:FO
is written in XML, you'll most likely generate it with XSLT and the
rendering model is pretty close to CSS (with extensions for paged
media). If you don't know all three of these beforehand, then that's a
lot of learning for one project. It's all good stuff you'll not regret
having spent the effort on afterwards, but there's a lot of it.

OTOH, it's far less ugly than Crystal and at least you'll learn
something useful.

Sounds like the ticket, pdf's exactly what i'm going to be finishing
them off in, doesn't need to be web viewable. The other main reason
why i'm looking down this route is because the code could all be made
within the database, and then simply exported if i'm correct. Or is
there an even better way? (without getting a much more advanced
database system than access/filemaker)
Feb 19 '08 #8
On 19 Feb, 17:16, salmanjavah...@yahoo.co.uk wrote:
Or is there an even better way?
Simplest possible report engine, then a really simple "Print as PDF"
tool like Distiller or Foxit?
Feb 19 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Shiz | last post by:
I currently have a Form with Option buttons (to give you the option of sorting by name, or by Field, etc), these are referenced in a module which then formats the report contingent on the option...
3
by: John Crowley | last post by:
I keep running into this over and over again... I want a block server control that renders a header and footer, and child controls in between. But I don't want a templated control, for the...
2
by: LilBuh | last post by:
hi there :) i ve been looking for some time a way to print an html file from vb.net i came up with this code for printing and removing the header and footer from IE then once the printing is done...
0
by: LilBuh | last post by:
Hello :) this is a repost... i ve been looking for a way since last week ... i have a template html file that i modify from my code... i need to print this file without IE's Header and Footer or...
7
by: Neil Jarman | last post by:
Hi, I would like to allow users to print a page, but I want to suppress the header and footer that appear by default. I gather its done with a style sheet. Please advise. Many Thanks,
7
by: xkeops | last post by:
Thinking of creating a website, most of the pages will have a general toolbar menu, a content and a footer. The content will be the only one who's gonna change but the rest (header,footer) will...
11
by: Grischa Brockhaus | last post by:
Hi, I'm trying to produce a div layout containing a header on the top with fixed height, a footer on the bottom using fixed height and a content layer using what's left of the browsers window. ...
0
by: srk | last post by:
hi to all, i need some help , my problem is that i have to generate a word document withe the data from data base and it should be displayed as tables in word and i have to insert some header and...
1
by: KoosHopeloos | last post by:
L.S., I'm trying to make a layout which is completely fixed in width and height if needed by using three divs rows (header, content, footer) which have each 3 div again to be able to play around...
3
by: Noorain | last post by:
I designed a site. i want to header,footer,left & right column fixed but body information only scrolling. this site screen to be 800/600 px. i designed this way but when i used position fixed all...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.