Helpers for ASP.NET MVC

The Helpers for ASP.NET MVC package contains helper classes and resources to simplify the implementation of common scenarios for providing a controlled printing experience within an ASP.NET MVC application/site:

  • Installation of the ScriptX Add-on on the client PC by a sample controller and view page crafted to assist the user during the installation process with prompts and screen snips depending upon the version of Internet Explorer being used.
  • Initialising print settings such as headers, footers, margins and the printer to use.
  • Buttons to initiate printing.

Printing with Client-side ScriptX is entirely a client PC process and so the ScriptX helpers all emit html, javascript and client event handlers that are executed on the client PC. There is never a call back to the server (action execution).

This package is dependent upon the following packages:

  1. MeadCo ScriptX - installers for web sites

    This package provides the installers for the ScriptX binaries and a custom configuration section that also allows you to specify any Advanced Printing publishing license you have purchased - or the evaluation license.

  2. MeadCo ScriptX JS Simple Wrapper

    This packages provides convenient wrappers on some common ScriptX functionality.

  3. Microsoft ASP.NET Web Optimization Framework.

    ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files.

There are no dependencies on any particular client side framework such as JQuery or Angular. The helpers output script in the global client side namespace with all function names starting with 'MeadCo_'. There are very few functions (one or two) and so there is little if any difference to wrapping the functions in a client side namespace.

All of the helper classes are provided in the namespace:

MeadCo.ScriptXClient:

The following helpers are provided:

  • ClientPrinting
  • PrintButton
  • PrintPreviewButton

Using licensed features

Some features requires an Advanced printing publishing license.

To enable the licensed features, specify your license in the installers config section. For example, to use the evaluation license, edit the config section to include the evaluation license. The section will look like this:

<meadco>
    <scriptx>
      <clientinstaller filename="~/content/meadco.scriptx/installers/smsx.cab" 
         version="8,3,0,4
" installhelper="~/ScriptXClientPrinting/Install" />
      <license 
         guid="{370000ED-D40C-43D4-B3D3-F2E7D2EFF47D}
" 
         revision="0" 
         filename="http://licenses.meadroid.com/
             download/{370000ED-D40C-43D4-B3D3-F2E7D2EFF47D}
/mlf" />
    </scriptx>
 </meadco>

 

Initialising printing at the client with MeadCo.ScriptX.ClientPrinting

Initialising printing at the client requires:

  • The ScriptX add-on 'factory' object
  • Some javascript to set the required print parameters

The section 'Basic printing with ScriptX' illustrates how to do this and while not at all difficult there are tedious aspects such as neatly handling the case of the add-on needs to be installed.

The MeadCo.ScriptX.ClientPrinting helper simplifies the coding to using an intuitive set of classes:

@ClientPrinting.GetHtml(printSettings: new PrintSettings()
{
    Footer = "Hello there from ScriptX MVC: &p of &P",
    Header = "ScriptX Demonstration page printed on: &D".
    PageSetup = new PrintSettings.PaperSetup()
    {
        Orientation = PrintSettings.Orientation.Landscape,
        Margins = new PrintSettings.PrintMargins()
        {
            Left = "1",
            Right = "1"
        }
    }
},clientValidationAction:ClientPrinting.ValidationAction.Redirect)

class MeadCo.ScriptXClient.ClientPrinting

This class provides instance and static methods GetHtml() that return the required html and scripting to declare the MeadCo ScriptX objects on the page (the MeadCo Secruty Manager object will be included if a license is described in web.config).

A view may call the static method as illustrated above. Alternatively a controller may create an instance of the class and set properties with the instance then passed to the view via one of the standard mechanisms (ViewBag, View Model etc) and then the view calls GetHtml() on the instance.

For example, a controller action may use this code before calling the view:

ClientPrinting p = new ClientPrinting() { PrintSettings =
    {
        Header = "Report: &D",
        Footer = "Page &p of &P",        
    } };

p.PrintSettings.PageSetup = new PrintSettings.PaperSetup()
{
    Orientation = PrintSettings.Orientation.Landscape
};

p.ClientValidate = ClientPrinting.ValidationAction.None;     
p.HtmlPrintProcessor = ClientPrinting.ScriptXHtmlPrintProcessors.Default;
p.InstallHelperUrl = @Url.Action("InstallScriptX", "Home");
ViewBag.ScriptXClient = p;

and then the view may:

@((ClientPrinting) ViewBag.ScriptXClient).GetHtml()

 

MethodsDescription
public static HtmlString GetHtml() Returns the HTML markup for the required objects and script to initialise the ScriptX on the client as determined from the arguments.
public HtmlString GetHtml() Returns the HTML markup for the required objects and script to initialise the ScriptX on the client as determined from the instance properties.

 

PropertiesDescriptionDefault
ValidationAction ClientValidate Specifies whether the ScriptX Add-on is to be installed if the required version isnt already installed. If the value is 'redirect' then if the required version is not available the user will be redirected to the installer page. ValidationAction.None - no scripted check is made that ScriptX is available. Internet Explorer will prompt to install the add-on if it is not installed or a newer version is required.
string InstallHelperUrl The url to redirect to when ClientValidate is 'redirect' and if the required version of ScriptX is not innstalled on the client PC Then value of the installhelper attribute of the clientinstaller configuration element.
ScriptXHtmlPrintProcessors HtmlPrintProcessor The html template to use. May be one of the values Default, Classic, IE7, IE 5, MaxiPT. This attribute specifies the value of the ScriptX templateUrl property ScriptXHtmlPrintProcessors.Default
PrintSetttings PrintSettings Describes the requires print settings such as header and footer, printer to use and orientation No settings

 

class PrintSettings

Describes common settings to apply to the print.

PropertiesDescriptionDefault
string Footer The footer text to use. See the footer reference for details. The user's IE default.
string Header The header text to use. See the header reference for details. The user's IE default
string HeaderFooterFont A description of the font to use. The ScriptX reference for headerFooterFont gives full details. The user's IE default
string Printer The printer to use. A publishing license is required to use this attribute. The user's default printer
PaperSetup PageSetup Describes the paper to use for the print The default for the users default printer.

 

class PaperSetup

Describes the paper to us - its size, orientation and source.

PropertiesDescriptionDefault
Orientation Orientation The paper orientation, e.g. Orientation.Landcape The user's IE default.
string PaperSource The name of the paper source to use (e.g. "Tray 1"). A publishing license is required to use this attribute. The printer default
string PaperSize The name of the paper size to use (e.g. "A4"). A publishing license is required to use this attribute. The printer default
MarginUnits Units The measurement units to use for margins, e.g. MarginUnits.Inches or MarginUnits.Mm. A publishing license is required to use this attribute. The user's default units
PrintMargins Margins The margins to apply. The user's default.

 

class PrintMargins

Describes the print margins to use. All margins are in the units specified in the parent PaperSetup class instance, or the users' default. Note that no margin value can be less than the printer's unprintable margin.

AttributeDescriptionDefault
string Left The left margin value in the specified units. The user's IE default.
string Top The top margin value in the specified units. The user's IE default
string Right The right margin value in the specified units. The user's IE default
string Bottom The bottom margin value in the specified units. The user's IE default

 

Print the current page with MeadCo.ScriptXClient.PrintButton

The MeadCo.ScriptXClient.PrintButton class provides a single static method GetHtml(). The method returns the html for a button element that when clicked will cause the current page to be printed according to the settings defined with MeadCo.ScriptXClient.ClientPrinting(.. settings ..).GetHtml().

For example:

@PrintButton.GetHtml(htmlAttributes: new { @class="btn btn-small"} )

 

PrintButton.GetHtml(string text = "Print", bool prompt = true, string frame = null, object htmlAttributes=null)

ParametersDescriptionNotes
text The button text.  
prompt Whether the user should be prompted to select a printer. To use 'false' a publishing license is required.
frame The name of the frame to be printed.  

 

Preview the current page or frame with MeadCoScriptX:PrintPreviewButton

The MeadCo.ScriptXClient.PrintButton class provides a single static method GetHtml(). The method returns the html for a button element that when clicked will cause the current page to be printed according to the settings defined with MeadCo.ScriptXClient.ClientPrinting(.. settings ..).GetHtml().

For example:

@PrintPreviewButton.GetHtml(htmlAttributes: new { @class="btn btn-small"} )

 

PrintPreviewButton.GetHtml(string text = "Preview ...", string frame = null, object htmlAttributes = null)

ParametersDescription
Text The button text.
Frame The name of the frame to be previewed.

 

Improvements and developments

What else would you like to see in the server controls package? Please use the Community Forum or Contact Us to send us your ideas.