tags:

views:

93

answers:

2

Hi In my view page i have to provide print option that prints the page ..I am looking for some examples or link that can help me can anyone provide some link

+2  A: 
<form>
<input type="button" value="Print this page" onClick="window.print()">
</form>
Ignacio Vazquez-Abrams
A: 

Use window.print() function in your Javascript code, When you clicking the button in the page

pavun_cool