I'm developing an ASP.Net MVC2 proj开发者_如何学Cect. What I need is that I want to print the view when user clicks a link.
You could use Javascript on a link
<a href="javascript:window.print();">Print</a>
In combination with the answer from @M.Shuwaiee you can also take advantage of creating a style sheet specifically for the printer so your view can render more accurately for a paper layout.
http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml has some information on this.
精彩评论