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
Post a Comment