Printing HTML Files (Microsoft Broke)
A while back I had been looking for the best approach for printing multiple HTML files at one time. After much investigation and forum advice, I went with the web browser document's print method. I would essentially load each page into a web browser document and when it was loaded completely, I would call the print method and then move on to the next file and all was working fine. It seems that IE8 has caused some issues where printing multiple files causes a script issue to pop up and the printing to fail. I am looking for other alternatives.
Here are my needs:
I need to print multiple html files in one batch.
I would like to show the print dialog only once before each batch, not each file.
Any new ideas?