2.21.1.010301, 3 January 2024 6:15 PM : © 2024 - Mead & Company Ltd.

Printing the content of a different (public) web page with any browser

 touching this button will return a PDF document of the web page scriptx.meadroid.com.

For the scripters

        <script src="~/Scripts/MeadCo.ScriptX/meadcoprint.js"></script>
        <script type="text/javascript">
        'use strict';
        $(function () 
           // connect to a print server
           MeadCo.ScriptX.Print.connect("https://scriptx.print.meadroid.net","");
           $("#btn_printUrl").click(function () {
            var settings = MeadCo.ScriptX.Print.HTML;
            // use server default header/footer but ensure portrait.
            settings.page.orientation = 
                    MeadCo.ScriptX.Print.HTML.PageOrientation.PORTRAIT;
            MeadCo.ScriptX.Print.HTML.printFromUrl("http://scriptx.meadroid.com/",false);
           });
        });
        </script>