Remove Header And Footer In Html To Print Page
Is there any way to remove header and footer of a html page, so that if user print it, there is no header and footer. User can choose to remove it using print setup, but i wonderi
Solution 1:
I do some googling and everybody said: "Can't remove them!" except using ActiveX and 3rd party plugins.
I wonder why some reporting controls (Telerik Reporting, DevX,...) can hide Header & Footer without using ActiveX or plugins! Are they print the page in another ways? What way?
Solution 2:
You seem to be referring to the header and footer lines that the browser is adding and not contents of the printed page. In that case the answer is: No, you can only change it in the settings.
Solution 3:
You can do like:
@media print
{
.noprint { display: none; }
}
Now you can apply the noprint
class to element you want to hide in printing.
Post a Comment for "Remove Header And Footer In Html To Print Page"