Is there a way to easily print pages from an ASP.NET site?

My prime minister just stopped, and he wanted to get a copy of all our pages ... Is there a way to do this for all pages without having to go to each?

+4
source share
2 answers

Free / Open Source app to crawl your own site:

http://www.httrack.com/

Then send the received local html files to the printer.


It should be mentioned that httrack has a configuration to control how deeply you go through the site hierarchy (and other parameters).

+3
source

This is really a crazy idea, but what about this:

Get a list of all the pages in the array and use JavaScript to load each page at intervals of 20 seconds. When the page loads, run the window.print () function of Javascript. The print job will be completed within 20 seconds, and the new page will be loaded, and the same thing will happen again.

+1
source

Source: https://habr.com/ru/post/1277740/


All Articles