How can I print from ASP.NET to a printer?

How can I print from ASP.NET to a printer (Epson tmt88iii)? I have an ASP.NET page that takes some info from a user once he clicks submit. I want to print that info to a client printer. How do I achieve this?
Accessing client-side printers is considered a security sensitive action. Therefore, there's no built-in support for directly accessing them neither in the browser or JavaScript. At most you can use the window.print() method.

This was first published in April 2004