
in my project i need to add a print button to JSP page. On clicking it the the current JSP page have to printed. how to implement it.. Pls provide me steps.. Thank yo

Hi,
given code for print button in jsp :
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Print this page</title>
</head>
<body>
<form>
<center>
<input type="button" value="Print this page" onClick="window.print()">
</center>
</form>
</body>
</html>