asp.net mvc - MVC code to print on standard Envelopes / Labels -


does know of opensource code, or have code can use, can used in mvc application print (addresses) on envelopes (where size can selected) or standard sized labels (again size etc can selected).

this must common scenario, can't find reusable code

you can call window.print() javascript can't specify paper size etc. that's user select on print dialog box. window.print() print entire page though, if want print selected parts of page can use media css hide elements print output. i.e.

@media print {     .noprint {display:none;} } 

and add class .noprint elements don't want printed.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -