Printing a Page in Jsp

Hi.. i'm doing a report in jsp.. can i ask how to print a page in jsp? Thanks in advance
[96 byte] By [BABY_GIRLa] at [2007-10-3 1:28:14]
# 1
include a script like below ?<script>window.print();</script>ram.
Madathil_Prasada at 2007-7-14 18:25:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
thanks.. but clarification what i mean printing is there's a button to print a page.. is that only the code?
BABY_GIRLa at 2007-7-14 18:25:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
<input type="button" name="print" value="Print" onclick="javascript:window.print()"/>
jgalacambraa at 2007-7-14 18:25:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
thanks again.. but last question do i need to have a function to print the data of the page?
BABY_GIRLa at 2007-7-14 18:25:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5

> thanks again.. but last question do i need to have a

> function to print the data of the page?

If that's what makes you happy

<input type="button" name="print" value="Print" onclick="printPage()"/>

[code]<script>

function printPage(){

javascript:window.print();

}

</script>

Note it has the exact functionality as the earlier post.

ram.

Madathil_Prasada at 2007-7-14 18:25:53 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...