Web Printing

I need help, detailed, on how to print a form from the web. Here is the scenario:

A form is created on web application. The user saves the form and at a later date goes back in and wants to print the form. When they hit File/Print from the browser the print out looks like a print screen and all the actions and fields that have hide when printed still show up on the form.

Is there any generic code that can be applied to print the form and it not look like a print screen either in an action button o r button ona form?

Thanks

Subject: Web Printing

try to use CSS as http://notestips.com does.

LotusRnext.net

Subject: Web Printing

Create a style element called “noprint”. I believe it will only work in IE.

  1. Add the following to the “HTML Head Content” area of the notes form:

"<style type="text/css" media="print">.noprint

{

display: none;

}

"

  1. Any elements on the form that should not be printed, add the text “noprint” to the class blank on the HTML tags portion (on the HTML tab) of the element’s properties.

Hope that helps…

Ben