External HTML E-form Guide

Size: px
Start display at page:

Download "External HTML E-form Guide"

Transcription

1 External HTML E-form Guide A guide for creation and setup of external e- froms for FileBound. Document Version: Published Date: 2/27/2014

2 - 2 -

3 Copyright Copyright 2013 FileBound All Rights Reserved. Printed in USA. The information contained in this document is the property of FileBound Neither receipt nor possession hereof confers or transfers any right to reproduce or disclose any part of the contents hereof, without the prior written consent of FileBound. No patent liability is assumed, however, with respect to the use of the information contained herein. Trademarks FileBound is a registered trademark; FileBound and the FileBound logo are trademarks of FileBound. FileBound OCR technology has been provided under license by ABBYY USA Software House, Inc Active Directory, ActiveX, Excel, Outlook, PowerPoint, Visio, Windows, Windows Server, Windows XP, Windows Vista, and Windows 7 are registered trademarks of Microsoft Corporation. All other product names and logos are trade and service marks of their respective companies. Disclaimer The instructions and descriptions contained in this document were accurate at the time of printing. However, succeeding products and manuals are subject to change without notification. Therefore, FileBound assumes no liability for damages incurred directly or indirectly from errors, omissions or discrepancies between the product and this document. An attempt has been made to state all allowable values where applicable throughout this document. Any values or parameters that the customer uses beyond those stated may have unpredictable results. FileBound 1701 Cushman Drive, Unit 1 Lincoln, NE P: (402) F: (402)

4 - 4 -

5 External HTML E-forms Overview 1 Creating a New External HTML Form 1 Basic Form Needs to Submit to FileBound 2 Global E-form User 2 POST Action 2 Example Form Tag Text 2 Field Names 2 Example Form Field Names 2 FileBound Properties Mapping 2 Example FileBound Property Mappings 3 FileBound Field Mapping 3 Example Field Mappings 3 Response Pages 4 Response Page URL's 4 Submit Button 4 Example Submit Button 4 Sample Basic External HTML Form 5 Supported HTML Input Examples 6 Drop-Down Menu 6 Checkboxes 6 Radio Buttons 6 Text Area 6 Additional FileBound Property Mappings 7 Example FileBound Property Mappings 7 File Uploads with Form Submission 8 Post Action 8 Example Form Tag Allowing Uploads 8 File Upload Field 8 File Upload Properties Mapping 8 Example FileBound Upload Property Mappings 8 Sample for all Input Types with File Upload 9 Submitting Information to an Existing FileBound File 11 Merge Using all Index Fields 11 Merge Using Only the Key Field 11 HTML SigPad Signature Submission 12 Requirements for Use: 12 Supported Internet Browsers 12 Script Requirements within Form 12 Form Tag Class Requirement 12 Canvas Tag Formatting 13 Sample Signature Pad Code

6 - 6 -

7 External HTML E-forms Overview External HTML E-forms Overview HTML pages or PDF forms can be used to submit information into FileBound, an example would be a job application that is available on a company website. The submitted information is then used to generate an e-form that is stored within FileBound and displays the information that was submitted. When an e-form is created during this process FileBound has the ability to automatically send this generated from into a workflow process. Information that is submitted can be used to generate a new file within FileBound or matched to an existing file using a key segment of information identified by the FileBound project's key index field. E-forms can be generated in the following formats: 1. HTML 2. Adobe Acrobat PDF 3. Microsoft Word Document 4. Microsoft Excel Spreadsheet Creating A New External HTML Form When starting to create a new external HTML e-form a basic HTML page can be created using any HTML editor. The layout and look of the form is created using this editor. During this layout and development process all of the necessary form fields need to be added to the HTML page and contained within the <form> tag in the HTML code. The page can use the following HTML form input types: Form Fields Checkboxes Radio Buttons Drop-Down Lists Text Areas File Uploads When creating the form the developer can use any scripting, such as javascript, to perform validations and other actions on the form. The developer can also use Cascading Style Sheets (CSS) to determine the look and positioning on the HTML page. The CSS information can be contained within the code of the HTML page. Note: An External CSS style sheet can be used but it will need to be accessible via the Internet or on the network where the form is hosted

8 Creating A New External HTML Form Basic Form Needs To Submit To FileBound Basic Form Needs to Submit to FileBound To make the form submit to FileBound the developer of the form will need to know information about the FileBound server that the form is being submitted to. The developer will need to specify the server that the form information is being submitted to, the form template inside FileBound that the data will be associated with, and what submitted information will be used to populate index fields or used for merging the data with an existing file within FileBound. If form field data is not mapped to a FileBound index field it will be stored within the FileBound database. During the submission process a variable named with the submitting form field name will be created and the submitted value will be stored associated with that variable name. This variable can then be used within the internal FileBound E-form to call and display the value stored for the variable. Global E-form User Within the Main Options of the FileBound server the Global E-form user will need to be set to a user that has access to the projects that will have E-forms created within them. The selected user will need to have sufficient privileges and group rights to be able to create new files and have document editing rights. POST Action When the Submit button is clicked the information located within the <form> tag will determine where and how the form information is submitted. This tag will need to be set to post the information to the HTML2EFORM.ashx page located on the FileBound server. This is commonly referred to as the HTML2EFORM plug-in. Example Form Tag Text <form method="post" action=" Note: The HTML2EFORM.ashx page is also available on all FileBound On-Demand sites. There is no need to request to make this available. It is standard with all ON-Demand sites. Field Names All fields need to have a unique name assigned to them. This name is used for mapping the form field to the FileBound index field during the submission process. If the form field is not mapped to a FileBound index field, during the submission process the form field name will then be used to create an extra data variable and the data contained in the field will be stored within the FileBound database. Example Form Field Names <p>name: <input type=text name="name"></p> <p>home Phone Number: <input type=text name="homephone"></p> FileBound Properties Mapping - 2 -

9 Creating A New External HTML Form Basic Form Needs To Submit To FileBound When the form information is submitted to FileBound the HTML2EFORM plug-in will need to know where the data will be submitted to within the FileBound server. Input field types will need to be created that are of the type "hidden". These fields will need to be populated with information that can be found within with FileBound server Central Administration window. Some of these fields can use specific ID numbers or names. Listed below are the required fields that are needed for the from to be successfully submitted: FBProjectID - This should be the Project ID where the data is being submitted to or FBProjectName - This should be the project name where the data is being submitted to FBeformID - This should be the e-form ID that will be used to display the submitted information or FBeformName - This should be the e-form name that will be used to display the submitted information FBMatchOption - Determines if the uploaded content should match "ALL" index fields or only the "KEY" index field to merge the data into an existing file Example FileBound Property Mappings name=fbprojectname value="client Info"> name=fbeformname value="information Form"> name=fbmatchoption value="key"> FileBound Field Mapping When the form information is submitted to FileBound the HTML2EFORM plug-in will need to know what form data will need to be used to populate FileBound file index fields. Input field types will need to be created that are of the type "hidden". These fields will be named with the variable for the FileBound index field, for example "FBField1". The default value for the field will need to be populated with the form field name that contains the information that should be used for the index field within FileBound when the form is submitted. Example Field Mappings In the example below the "Name" form field needs to populate field 1 within FileBound and "Home Phone Number" form field needs to populate field 2 within FileBound. Example Form Fields: <p>name: <input type=text name="name"></p> <p>home Phone Number: <input type=text name="homephone"></p> Field Mappings name=fbfield1 value="name"> name=fbfield2 value="homephone"> - 3 -

10 Creating A New External HTML Form Basic Form Needs To Submit To FileBound Response Pages After the Submit button is clicked by the user and the form data is sent to the HTML2EFORM plug-in the user needs to be presented with a status of the submission. Separate HTML pages will be created for each response and will need to be accessible to the user just the same as the html page with the form was. URL's to the HTML pages will be used to present the user with the appropriate message. Input field types will need to be created that are of the type "hidden" that will contain these URL's. The pages that are used can have any look and layout that the developer of the page wants the page to have. The HTML2EFORM plug-in will point the user's Internet browser to the appropriate URL after the completion of the submission process or if it encounters an error during the submission process. Response Page URL's name=fbokpage value=" name=fberrorpage value=" Submit Button At the end of the form a standard "Submit" button will need to be added to the form that will allow users to submit the information to FileBound. Example Submit Button <input type=submit name="submit"> - 4 -

11 Creating A New External HTML Form Sample Basic External HTML Form Sample Basic External HTML Form <html> <head> <title>example External E-form For FileBound</title> </head> <form method="post"action=" <p>name: <input type=text id="name" name="name"></p> <p>home Phone Number: <input type=text id="homephone" name="homephone"></p> <p>address: <input type=text id="address" name="address"></p> <p>city: <input type=text id="city" name="city"></p> <p>state: <input type=text id="state" name="state"></p> <p>zip Code: <input type=text id="zip" name="zip"></p> <p>employee Number: <input type=text id="empnumb" name="empnum"></p> name=fbprojectname value="client Information"> name=fbeformname value="information Form"> name=fbmatchoption value="key"> name=fbfield1 value="name"> name=fbfield2 value="homephone"> name=fbfield3 value="address"> name=fbfield4 value="city"> name=fbfield5 value="state"> name=fbfield6 value="zip"> name=fbokpage value=" name=fberrorpage value=" <input type=submit name="submit"> </form> </html> Figure 4.1: Web Page within Internet Explorer Generated From Supplied Code - 5 -

12 Supported HTML Input Examples Sample Basic External HTML Form Supported HTML Input Examples FileBound HTML E-forms support many different form input types. Listed below are examples of the different types. Drop-Down Menu <select name="dept"> <option value="selected">select One <option value="sales">sales <option value="support">support <select> Checkboxes <input type="checkbox" name="itmeone"> Option One <input type="checkbox" name="itmetwo"> Option Two <input type="checkbox" name="itmethree"> Option Three Radio Buttons <input type="radio" name="favcolor" value="red">red <input type="radio" name="favcolor"value="green">green <input type="radio" name="favcolor" value="blue">blue Note: The value for this field type cannot have any spaces in the name. For example use "TechnicalSupport" instead of "Technical Support" Text Area <textarea name="comments"style="width: 600px; height: 120px"></textarea> Note: The text area above has had some style formatting added to specify the textarea box size

13 Additional FileBound Property Mappings Sample Basic External HTML Form Additional FileBound Property Mappings When the form information is submitted to FileBound the HTML2EFORM plug-in will need to know where the data will be submitted to within the FileBound server and anything extra that might need to be done. Input field types will need to be created that are of the type "hidden". These fields will need to be populated with information that can be found within with FileBound server Central Administration window. Some of these fields can use specific ID numbers or names. Listed below additional properties that can be used: FBWFProcessID - This should be the specific Workflow Process ID that the generated from can be routed into. FBWFProcessName - Can be used instead of "FBWFProcessID". This should be the specific Workflow Process Name that the generated from can be routed into. FBProcessID - This should be the e-form process ID that will be used to generate multiple e-forms at on time. FBProcessName - Can be used instead of "FBProcessID". This should be the e-form process name that will be used to generate multiple e-forms at on time. FBFileID - The file ID that the submitted data will be associated with. FBArchiveID - The archive ID that the submitted data will be associated with. FBArchiveName - Can be used instead of "FBArchiveID". The archive name that the submitted data will be associated with. Example FileBound Property Mappings name=fbwfprocessname value="invoice Approvals"> name=fbprocessid value="2256"> name=fbdivider value="key"> name=fbseparator value="html"> - 7 -

14 File Uploads With Form Submission Sample Basic External HTML Form File Uploads With Form Submission External forms that submit data to FileBound can be configured to also allow file attachments to be uploaded to FileBound during the submission process. For example, the ability to upload a resume when submitting an online job application. When developing an external HTML e-form that provides this functionality addition information needs to be added to the form. Multiple uploads are possible, just repeat the code and change the "1" with "2", "3", etc. Below are the areas that will have extra configuration needs. Post Action Within the <Form> tag the "enctype" will need to be added to allow the upload of an attached file. Example Form Tag Allowing Uploads <form method="post"enctype="multipart/form-data" action=" File Upload Field Browse For File: <input type="file" name="fbdocumentdata1" type="" /> Note: The name for this field type MUST be named "FBDOCUMENTDATA1". File Upload Properties Mapping When the file is uploaded to FileBound the developer of the external submission form has the ability to specify how the uploaded file will be named and where what divider and separator it will be stored in. The below hidden inputs will need to be added to the form to allow the HTML2EFORM plug-in upload the attached file into the proper location. FBDocumentName - This will replace "Page 0001" within the viewer after upload FBDocumentDivider - Name of the Divider the uploaded file will be placed in within FileBound FBDocumentSeparator - Name of the Separator the uploaded file will be placed in within FileBound Example FileBound Upload Property Mappings name=fbdocumentname1 value="docname"> name=fbdocumentdivider1 value="divname"> name=fbdocumentseparator1 value="sepname"> Note: Additional upload fields can be added to the form by repeating the same code and replacing the 1 with 2, 3, etc

15 Sample For All Input Types With File Upload Sample Basic External HTML Form Sample For All Input Types With File Upload <html> <head> <title>example External E-form For FileBound</title> </head> <form method="post" enctype="multipart/form-data" action=" <p>name: <input type=text id="name" name="name"></p> <p>home Phone Number: <input type=text id="homephone" name="homephone"></p> <p>address: <input type=text id="address" name="address"></p> <p>city: <input type=text id="city" name="city"></p> <p>state: <input type=text id="state" name="state"></p> <p>zip Code: <input type=text id="zip" name="zip"></p> <p>employee Number: <input type=text id="empnumb" name="empnum"></p> <p>department: <select name="dept"> <option value="selected">select One <option value="sales">sales <option value="support">support <select> </p> <input type="checkbox" name="itmeone"> Option One <br> <input type="checkbox" name="itmetwo"> Option Two <br> <input type="checkbox" name="itmethree"> Option Three <br><br><br> <input type="radio" name="favcolor">red <input type="radio" name="favcolor">green <input type="radio" name="favcolor">blue <br><br><br> <textarea name="comments"style="width: 600px; height: 120px"></textarea><br><br> Browse For First File: <input type="file" name="fbdocumentdata1" type="" /><br><br> name=fbdocumentname1 value="docname"> name=fbdocumentdivider1 value="divname"> name=fbdocumentseparator1 value="sepname"> Browse For Second File: <input type="file"name="fbdocumentdata2" type="" /><br><br> name=fbdocumentname2 value="docname"> name=fbdocumentdivider2 value="divname"> name=fbdocumentseparator21 value="sepname"> name=fbprojectid value="34"> name=fbeformid value="79"> name=fbmatchoption value="key"> name=fbfield1 value="name"> name=fbfield2 value="homephone"> name=fbfield3 value="address"> name=fbfield4 value="city"> name=fbfield5 value="state"> name=fbfield6 value="zip"> name=fbokpage value=" name=fberrorpage value=" <input type=submit name="submit"> </form> </html> - 9 -

16 Sample For All Input Types With File Upload Sample Basic External HTML Form Figure 4.2: Sample Page Generated From Sample Code

17 Submitting Information To An Existing FileBound File Merge Using All Index Fields Submitting Information To An Existing FileBound File It is sometimes necessary to have the data that is being submitted generate an E-form within a file that already exists within FileBound. By default FileBound is going to try to match all of the submitting index field information to an existing file. Merge Using all Index Fields If all of the FileBound index fields match the data that is being submitted by the external form then the new E-form will be generated within the existing file. When using this method all index fields will have to match, no fields can be left blank during the submission process unless those fields are blank within the existing file in FileBound. To use this matching option code the "FBMatchOption" within the submitting HTML page using the following format: name=fbmatchoption value="all"> Merge Using Only the Key Field When a project is created within FileBound an index field is designated as the "Key" index field. This is normally a field that contains unique values across all of the files that are stored within that project. When external HTML form data is being submitted to FileBound to generate an e-form instead of matching on all of the existing file's index field values it can match on just the key index field. To use this matching option code the "FBMatchOption" within the submitting HTML page using the following format: name=fbmatchoption value="key">

18 HTML SigPad Signature Submission Requirements For Use: HTML SigPad Signature Submission If the e-form that is to be submitted requires a signature, a signature area can be added to the e-form. The user can then use their mouse or a touch device to apply the signature. The form will not be able to be submitted until a signature is entered. Once submitted internal e-forms can be used to display the signature. Using this signature method all of the data is stored within the FileBound database and does not create an actual image. Requirements for Use: There are a few requirements that are needed when using the SigPad signature capability. Supported Internet Browsers To use this signature submission method an Internet Browser that supports the Canvas element of HTML5 and jquery will need to be used to submit the e-form. A list of supported browsers are listed below: Desktop Browsers Internet Explorer 9.x or Higher Google Chrome Firefox 2.0 or Higher Safari 3.1 or Higher Opera 9 (Win) or Higher Mobile Browsers ios 3.2 or Higher Android Browser 2.1 or Higher Opera Mini 5.0 or Higher Opera Mobile 10 or Higher Script Requirements within Form The SigPad functionality is possible because of functionality in HTML5 and jquery. For the signature field to properly display on the page there are several different scripts that need to be used. Starting with FileBound these scripts are included with the FileBound server installation. The scripts will need to be added within the <head> tag The four scripts that need to be included and their default locations are: <script src=" <script src=" <script src=" <script> $(document).ready(function() { $('.sigpad').signaturepad({ drawonly: true }); }); </script> Form Tag Class Requirement Within the <form> tag that contains the Canvas element the class must be set to "sigpad", otherwise the signature area will not properly be displayed. <form action=" method="post" name="eform" id="eform" class="sigpad">

19 HTML SigPad Signature Submission Sample Signature Pad Code Canvas Tag Formatting Within the body of the HTML e-form add the <Canvas> tag where the signature area needs to be displayed. Along with the Canvas tag an <input> tag of type "hidden" will need to be added and named "output" as well as have a class of "output". This will display the signature area and provide a hidden input field to store the signature data. When the data is submitted to FileBound an e-form variable labeled $$output$$ will be created and the internal form will use this variable to display the signature. The Canvas tag and Input tag should look like the following: <canvas class="pad" width="500" height="96" style="left: 0px; top: 0px"></canvas> Note: The width, height and style elements can be adjusted to fit the look and needs of the e-form. name=output class="output"> Sample Signature Pad Code <html> <head> <title>sigpad External Example Form</title> <script src=" <script src=" <script src=" <script> $(document).ready(function() { $('.sigpad').signaturepad({ drawonly: true }); }); </script> </head> <body> <form action=" method="post" name="eform" id="eform" class="sigpad"> <canvas class="pad" width="500" height="96" style="left: 0px; top: 0px"></canvas> name=output class="output"> <br> <input type=submit name=submit value="submit" /> name=fbprojectid value="13" /><br /> name=fbeformid value="70" /><br /> name=fbextension value="html" /><br /> </form> </body> </html>

20 - 14 -

21 Upland Software: 1701 Cushman Drive, Lincoln, NE Phone: Fax:

estatement User Guide Open Solutions Inc

estatement User Guide Open Solutions Inc Open Solutions Inc Digital Document Systems http://www.cowww.com estatement User Guide What is estatements?... 3 How Can I Access My estatement?... 3 estatement Access Requirements... 3 Viewing Your estatement

More information

Ascent 6.06 Release Script for Hummingbird DM Release Notes

Ascent 6.06 Release Script for Hummingbird DM Release Notes Ascent 6.06 Release Script for Hummingbird DM 5.0-5.1 Release Notes 10001305-000 Revision A September 27, 2004 Copyright Copyright 2004 Kofax Image Products, Inc. All Rights Reserved. Printed in USA. The

More information

Ascent XML Release. Release Notes. Version 5.0. Important: These printed Release Notes supercede the notes in PDF format on the Ascent XML CD.

Ascent XML Release. Release Notes. Version 5.0. Important: These printed Release Notes supercede the notes in PDF format on the Ascent XML CD. Ascent XML Release Version 5.0 Important: These printed Release Notes supercede the notes in PDF format on the Ascent XML CD. Release Notes 10001154-000 Revision A September 15, 2003 Copyright Copyright

More information

Ascent 7.0 Release Script for IBM Content Manager for iseries Release Notes

Ascent 7.0 Release Script for IBM Content Manager for iseries Release Notes Ascent 7.0 Release Script for IBM Content Manager for iseries 5.1-5.3 Release Notes 10001403-000 Revision A May 11, 2005 Copyright Copyright 2005 Kofax Image Products, Inc. All rights reserved. Printed

More information

AvePoint Permissions Manager

AvePoint Permissions Manager User Guide Issued July 2017 1 Table of Contents What s New in this Guide...4 About...5 Supported Browsers...7 Submit Documentation Feedback to AvePoint...8 Integrate with AvePoint Online Services...9 AvePoint

More information

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 FORMS. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 FORMS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: How to use forms and the related form types. Controls for interacting with forms. Menus and presenting users with

More information

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes

Ascent 6.1 Release Script for FileNet Content Manager 3.0. Release Notes Ascent 6.1 Release Script for FileNet Content Manager 3.0 Release Notes 10001303-000 Revision A November 16, 2004 Copyright Copyright 2004 Kofax Image Products, Inc. All Rights Reserved. Printed in USA.

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

More information

Moving You Forward A first look at the New FileBound 6.5.2

Moving You Forward A first look at the New FileBound 6.5.2 Moving You Forward A first look at the New FileBound 6.5.2 An overview of the new features that increase functionality and ease of use including: FileBound 6.5.2 Service Pack FileBound Capture 6.6 New

More information

eform Suite Version 5

eform Suite Version 5 2014/March eform Suite Version 5 What s new Conventions For better understanding, the following conventions are used in this document: Code uses the font Courier. Paths like c:\programm files\teleform

More information

CMS Training. Web Address for Training Common Tasks in the CMS Guide

CMS Training. Web Address for Training  Common Tasks in the CMS Guide CMS Training Web Address for Training http://mirror.frostburg.edu/training Common Tasks in the CMS Guide 1 Getting Help Quick Test Script Documentation that takes you quickly through a set of common tasks.

More information

Web Focused Programming With PHP

Web Focused Programming With PHP Web Focused Programming With PHP May 20 2014 Thomas Beebe Advanced DataTools Corp (tom@advancedatatools.com) Tom Beebe Tom is a Senior Database Consultant and has been with Advanced DataTools for over

More information

PDF. PDF Share Forms Cloud Making Office 365 forms smarter. Let Office 365 users manage the entire form life cycle on their own SHARE FORMS

PDF. PDF Share Forms Cloud Making Office 365 forms smarter. Let Office 365 users manage the entire form life cycle on their own SHARE FORMS Making Office 365 forms smarter Let Office 365 users manage the entire form life cycle on their own MADE FOR BUSINESS USERS It takes less than two minutes to integrate form to your Office 365 site and

More information

Hyperlinks, Tables, Forms and Frameworks

Hyperlinks, Tables, Forms and Frameworks Hyperlinks, Tables, Forms and Frameworks Web Authoring and Design Benjamin Kenwright Outline Review Previous Material HTML Tables, Forms and Frameworks Summary Review/Discussion Email? Did everyone get

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

Spring 2014 Interim. HTML forms

Spring 2014 Interim. HTML forms HTML forms Forms are used very often when the user needs to provide information to the web server: Entering keywords in a search box Placing an order Subscribing to a mailing list Posting a comment Filling

More information

NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE. A Manual for the Cascade Server Content Management System (CMS)

NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE. A Manual for the Cascade Server Content Management System (CMS) NORTH CAROLINA A&T STATE UNIVERSITY CMS USER GUIDE A Manual for the Cascade Server Content Management System (CMS) Table of Contents Chapter 1 - Getting Started... 3 Overview... 3 What is a Content Management

More information

Release Date July 12 th 2013

Release Date July 12 th 2013 Release Date July 12 th 2013 Table of Contents 1. Overview...6 1.1 HTML Player...6 1.2 Why are we changing?...6 1.3 What do you need to do?...6 1.4 Will everything change to HTML?...6 1.5 Will the look/feel

More information

Service Quotation. School Employees LC Credit Union ATTN: Neil Sommers 340 GRISWOLD ROAD ELYRIA, OHIO USA

Service Quotation. School Employees LC Credit Union ATTN: Neil Sommers 340 GRISWOLD ROAD ELYRIA, OHIO USA 1 1 Technician: RROSATI Website Redesign and Development Scope Information: Redesign www.selccu.org with the primary goal of creating a new, modern and intuitive website that s easy to use and navigate

More information

Lecture 6: More Arrays & HTML Forms. CS 383 Web Development II Monday, February 12, 2018

Lecture 6: More Arrays & HTML Forms. CS 383 Web Development II Monday, February 12, 2018 Lecture 6: More Arrays & HTML Forms CS 383 Web Development II Monday, February 12, 2018 Lambdas You may have encountered a lambda (sometimes called anonymous functions) in other programming languages The

More information

AvePoint Record Rollback for Microsoft Dynamics CRM

AvePoint Record Rollback for Microsoft Dynamics CRM AvePoint Record Rollback 3.1.2 for Microsoft Dynamics CRM Installation and Configuration Guide Revision D Issued February 2014 1 Table of Contents Overview... 3 Obtaining the Record Rollback Solution Package...

More information

Concur Invoice QuickStart Guide. Concur Technologies Version 1.6

Concur Invoice QuickStart Guide. Concur Technologies Version 1.6 Concur Invoice QuickStart Guide Concur Technologies Version 1.6 November 30, 2016 Proprietary Statement This document and any attached materials (including videos or other media) contain Concur Technologies,

More information

1 Form Basics CSC309

1 Form Basics CSC309 1 Form Basics Web Data 2! Most interesting web pages revolve around data! examples: Google, IMDB, Digg, Facebook, YouTube! can take many formats: text, HTML, XML, multimedia! Many of them allow us to access

More information

Release Date April 24 th 2013

Release Date April 24 th 2013 Release Date April 24 th 2013 Table of Contents 1. Overview...5 1.1 HTML Player...5 1.2 Why are we changing?...5 1.3 What do you need to do?...5 1.4 Will everything change to HTML?...5 1.5 Will the look/feel

More information

Act! Marketing Automation

Act! Marketing Automation Act! Marketing Automation A Guide to Getting Started Helping your business grow with marketing automation Act! Marketing Automation Getting Started Guide 2 Contents Page Page 8 Page 10 Page 11 Page 11

More information

See What's Coming in Oracle Taleo Business Edition Cloud Service

See What's Coming in Oracle Taleo Business Edition Cloud Service See What's Coming in Oracle Taleo Business Edition Cloud Service Release 15B2 Release Content Document October 2015 TABLE OF CONTENTS REVISION HISTORY... 3 TALEO BUSINESS EDITION... 4 CAREERS WEBSITE...

More information

cwhois Manual Copyright Vibralogix. All rights reserved.

cwhois Manual Copyright Vibralogix. All rights reserved. cwhoistm V2.12 cwhois Manual Copyright 2003-2015 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the cwhois product and is

More information

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites A. Pre-Production of Webpage 1. Determine the specific software needed WYSIWYG- design software that manipulates components of the web page without the user writing or editing code Uses graphical layout

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

More information

IMAGE LINKS - INTRODUCTION

IMAGE LINKS -  INTRODUCTION IMAGE LINKS - EMAIL INTRODUCTION The purpose of this document is to provide guidance for client website administrators who create and maintain content on how to create image links to content. RELATED IMAGE

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

SOEN287: Web Programming

SOEN287: Web Programming Concordia University Department of Computer Science and Software Engineering SOEN287: Web Programming Summer 2016 Programming assignment #1 Deadline: Friday, July, 22, 2016 @ 23:55 Late submission: Type

More information

QuickStart Guide. System Setup, Customization + Add-ons & Integrations. Big Contacts, LLC 01/30/2017. Page 1

QuickStart Guide. System Setup, Customization + Add-ons & Integrations. Big Contacts, LLC 01/30/2017. Page 1 QuickStart Guide System Setup, Customization + Add-ons & Integrations Big Contacts, LLC 01/30/2017 Page 1 This guide will show you how to get off to a quick and successful start with BigContacts Section

More information

Oracle Enterprise Performance Reporting Cloud. What s New in June 2017 Update (17.06)

Oracle Enterprise Performance Reporting Cloud. What s New in June 2017 Update (17.06) Oracle Enterprise Performance Reporting Cloud What s New in June 2017 Update (17.06) May 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, JUNE UPDATE... 4 ANNOUNCEMENTS

More information

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02)

Oracle Enterprise Performance Reporting Cloud. What s New in February 2017 Update (17.02) Oracle Enterprise Performance Reporting Cloud What s New in February 2017 Update (17.02) February 2017 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, FEBRUARY UPDATE...

More information

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS

ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS ABSOLUTE FORM PROCESSOR ADMINISTRATION OPTIONS The Absolute Form Processor is very easy to use. In order to operate the system, you just need the menu at the top of the screen. There, you ll find all the

More information

WebSpray TM. User Guide. Web Server Stress-Testing Tool. Version 2.0

WebSpray TM. User Guide. Web Server Stress-Testing Tool. Version 2.0 WebSpray TM Web Server Stress-Testing Tool User Guide Version 2.0 Copyright Copyright 2006 CAI Networks, Inc. All Rights Reserved. The information contained in this document is the property of CAI Networks,

More information

Advanced Authoring Templates for WebSphere Portal content publishing

Advanced Authoring Templates for WebSphere Portal content publishing By David Wendt (wendt@us.ibm.com) Software Engineer, IBM Corp. October 2003 Advanced Authoring Templates for WebSphere Portal content publishing Abstract This paper describes some advanced techniques for

More information

PrintShop Mail Web. Release Notes

PrintShop Mail Web. Release Notes PrintShop Mail Web Release Notes Copyright Information Copyright 1994-2010 Objectif Lune Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

VTEM SLIDES INSTRUCTION MANUAL COPYRIGHT DISCLAIMER. Instruction Manual FOR INFO, UPDATES, REQUESTS & CONTACT

VTEM SLIDES INSTRUCTION MANUAL COPYRIGHT DISCLAIMER. Instruction Manual FOR INFO, UPDATES, REQUESTS & CONTACT VTEM SLIDES INSTRUCTION MANUAL COPYRIGHT DISCLAIMER Instruction Manual FOR INFO, UPDATES, REQUESTS & CONTACT Check out vtem.net, the official website of this Joomla! Module manual and home to high quality

More information

PrinterOn Hosted Service. Printing Guide and Frequently Asked Questions

PrinterOn Hosted Service. Printing Guide and Frequently Asked Questions PrinterOn Hosted Service Printing Guide and Frequently Asked Questions Table of Contents 1 How to Print with PrinterOn Hosted Service... 3 1.1 Email Printing... 3 1.2 Web Portal Printing... 3 1.3 Mobile

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Creating Forms. Speaker: Ray Ryon

Creating Forms. Speaker: Ray Ryon Creating Forms Speaker: Ray Ryon In this lesson we will discuss how to create a web form. Forms are useful because they allow for input from a user. That input can then be used to respond to the user with

More information

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements.

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. Purchase Items during Registration Administrators can now enable

More information

SkyVisualEditor Salesforce1 Support Guide

SkyVisualEditor Salesforce1 Support Guide SkyVisualEditor Salesforce1 Support Guide Ver 1.0.0.3 April 6 th, 2015 TerraSky co., Ltd. Page 1 of 19 Table of Contents 1. Preface... 3 2. Notice... 3 (1) Request to the customer... 3 (2) Trademarks...

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

User s Quick Start Guide

User s Quick Start Guide i User s Quick Start Guide Table of Contents Introduction... 4 Browser Requirements... 4 Key Terms... 5 Global Navigation Bar... 5 Dock... 5 Guided Workflows... 5 Stack... 6 Activity... 6 Logging Into

More information

CMS 101. For questions or issues: go.pacific.edu/webrequest

CMS 101. For questions or issues: go.pacific.edu/webrequest CMS 101 For questions or issues: go.pacific.edu/webrequest Overview Introductions What is a CMS? What is Workflow? Logging into the CMS and overview of CMS interface Creating a folder Creating a Detail

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Adaptations by PVII responsive and then creates your page instantly Al Sparber & Gerry Jacobsen PVII

Adaptations by PVII responsive and then creates your page instantly Al Sparber & Gerry Jacobsen PVII Adaptations by PVII is a Dreamweaver extension that allows you to select from 5 unique responsive layouts and then creates your page instantly. We hope you enjoy using this product as much as we did making

More information

Chapter 12 Creating Web Pages

Chapter 12 Creating Web Pages Getting Started Guide Chapter 12 Creating Web Pages Saving Documents as HTML Files Copyright This document is Copyright 2017 by the LibreOffice Documentation Team. Contributors are listed below. You may

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

RELEASE GUIDE VERSION 14.1

RELEASE GUIDE VERSION 14.1 RELEASE GUIDE VERSION 14.1 Copyright 2014 FileHold Systems Inc. All rights reserved. For further information about this manual or other FileHold Systems products, contact us at Suite 250-4664 Lougheed

More information

Oracle Enterprise Performance Reporting Cloud. What s New in the November Update (16.11)

Oracle Enterprise Performance Reporting Cloud. What s New in the November Update (16.11) Oracle Enterprise Performance Reporting Cloud What s New in the November Update (16.11) November 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE ENTERPRISE PERFORMANCE REPORTING CLOUD, NOVEMBER UPDATE...

More information

Compliance Guardian Online 2. Release Notes

Compliance Guardian Online 2. Release Notes Compliance Guardian Online 2 Release Notes Issued July 2016 New Features and Improvements Added a guidance window for first time Compliance Guardian Online users. Users can now create a real-time scanner

More information

Chapter 3 HTML Multimedia and Inputs

Chapter 3 HTML Multimedia and Inputs Sungkyunkwan University Chapter 3 HTML Multimedia and Inputs Prepared by D. T. Nguyen and H. Choo Web Programming Copyright 2000-2018 Networking Laboratory 1/45 Copyright 2000-2012 Networking Laboratory

More information

EMC White Paper. BPS http Listener. Installing and Configuring

EMC White Paper. BPS http Listener. Installing and Configuring EMC White Paper BPS http Listener Installing and Configuring March 2006 Copyright 2005 EMC Corporation. All rights reserved. EMC believes the information in this publication is accurate as of its publication

More information

Dynamic Form Processing Tool Version 5.0 November 2014

Dynamic Form Processing Tool Version 5.0 November 2014 Dynamic Form Processing Tool Version 5.0 November 2014 Need more help, watch the video! Interlogic Graphics & Marketing (719) 884-1137 This tool allows an ICWS administrator to create forms that will be

More information

Manual for CKForms component Release 1.3.1

Manual for CKForms component Release 1.3.1 Manual for CKForms component Release 1.3.1 This manual outlines the main features of the component CK Forms including the module and the plug-in. CKForms 1.3 is the new version of the component for Joomla

More information

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB Unit 8 HTML Forms and Basic CGI Slides based on course material SFU Icons their respective owners 1 Learning Objectives In this unit you will

More information

By completing this practical, the students will learn how to accomplish the following tasks:

By completing this practical, the students will learn how to accomplish the following tasks: By completing this practical, the students will learn how to accomplish the following tasks: Learn different ways by which styles that enable you to customize HTML elements and precisely control the formatting

More information

Internet Explorer 10 Guide Pdf Problem Print

Internet Explorer 10 Guide Pdf Problem Print Internet Explorer 10 Guide Pdf Problem Print General Troubleshooting, Browser Print Page Setup Settings. Chrome, Firefox, Internet Explorer, Safari. IE 9, 10 & 11 Print Issues, Print PDF Document Settings.

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

UPDATE GUIDE V4.5 TO V4.6

UPDATE GUIDE V4.5 TO V4.6 UPDATE GUIDE V4.5 TO V4.6 Perspective by PPM Version 4.6 Printed June 2015 Copyright 2015 PPM 2000 Inc. and its licensors. All rights reserved. PPM 2000, the PPM 2000 logo, Perspective by PPM 2000, the

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 12, 2017 - Version 9.4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Compliance Guardian Online 2

Compliance Guardian Online 2 Compliance Guardian Online 2 Release Notes Cumulative Update 2 Issued January 2017 New Features and Improvements Improvements to job completion logic. Improvements to security trimming. Known Issues There

More information

Introduction to DHTML

Introduction to DHTML Introduction to DHTML HTML is based on thinking of a web page like a printed page: a document that is rendered once and that is static once rendered. The idea behind Dynamic HTML (DHTML), however, is to

More information

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1

Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform 4.1 Support Package 1 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data"

HTML Tables and Forms. Outline. Review. Review. Example Demo/ Walkthrough. CS 418/518 Web Programming Spring Tables to Display Data CS 418/518 Web Programming Spring 2014 HTML Tables and Forms Dr. Michele Weigle http://www.cs.odu.edu/~mweigle/cs418-s14/ Outline! Assigned Reading! Chapter 4 "Using Tables to Display Data"! Chapter 5

More information

DocuSign PowerForms User Guide

DocuSign PowerForms User Guide Information Guide 1 DocuSign PowerForms User Guide 2 Copyright 2003-2015 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign Intellectual

More information

ishipdocs User Guide

ishipdocs User Guide ishipdocs User Guide 11/8/2016 Disclaimer This guide has been validated and reviewed for accuracy. The instructions and descriptions it contains are accurate for ishipdocs. However, succeeding versions

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

More information

Xerte. Guide to making responsive webpages with Bootstrap

Xerte. Guide to making responsive webpages with Bootstrap Xerte Guide to making responsive webpages with Bootstrap Introduction The Xerte Bootstrap Template provides a quick way to create dynamic, responsive webpages that will work well on any device. Tip: Webpages

More information

AvePoint Governance Automation 2. Release Notes

AvePoint Governance Automation 2. Release Notes AvePoint Governance Automation 2 Release Notes Service Pack 2, Cumulative Update 1 Release Date: June 2018 New Features and Improvements In the Create Office 365 Group/Team service > Governance Automation

More information

Oracle Taleo Cloud for Midsize (Taleo Business Edition)

Oracle Taleo Cloud for Midsize (Taleo Business Edition) Oracle Taleo Cloud for Midsize (Taleo Business Edition) Release 18B What s New TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 RELEASE FEATURE SUMMARY... 4 PLATFORM ENHANCEMENTS... 5 Password Settings...

More information

Workstation Configuration Guide

Workstation Configuration Guide Workstation Configuration Guide August 13, 2018 Version 9.6.134.78 For the most recent version of this document, visit our documentation website. Table of Contents 1 Workstation configuration 4 1.1 Considerations

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Adobe Captivate Level 1

Adobe Captivate Level 1 Information Technology Services Kennesaw State University Adobe Captivate Level 1 Presented by Technology Outreach in collaboration with The Multimedia Development Group (MDG) Copyright 2007 Information

More information

STUDY ASSISTANT. Adding a New Study & Submitting to the Review Board. Version 10.03

STUDY ASSISTANT. Adding a New Study & Submitting to the Review Board. Version 10.03 STUDY ASSISTANT Adding a New Study & Submitting to the Review Board Version 10.03 Contents Introduction... 3 Add a Study... 3 Selecting an Application... 3 1.0 General Information... 3 2.0 Add Department(s)...

More information

Questionnaire 4.0 User Manual 2006/4/14

Questionnaire 4.0 User Manual 2006/4/14 Email Questionnaire 4.0 User Manual 2006/4/14 Introduction Email Questionnaire is an interactive email survey system. Unlike other on-line questionnaire systems that need a web server to construct, distribute

More information

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information.

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. WWW: (World Wide Web) A way for information to be shared over

More information

Navigating Your Profile

Navigating Your Profile Part 1: Profile Login Navigating Your Profile 1. Start at the Greater Kansas City Community Foundation s home page, www.growyourgiving.org. Select Nonprofit Search. 2. This is the Nonprofit Search home

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2017 Oracle Corporation. All rights reserved 08-Dec-2017 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

Sourcing Buyer User Guide

Sourcing Buyer User Guide Sourcing Buyer User Guide Version 6.4 August 2011 Copyright 2002-2011 Ion Wave Technologies, Inc. Springfield, Missouri Welcome to Enterprise Sourcing! This manual is intended to provide buyers an instructional

More information

ConsumerTesting.com Online Applications Supplier Help Document

ConsumerTesting.com Online Applications Supplier Help Document ConsumerTesting.com Online Applications Supplier Help Document Online Application Help Page! of! 1 17 Online Application for Testing Help Document BEFORE STARTING... 3 ACCESSING THE ONLINE APPLICATION...

More information

Version 1.4. FaxCore User Manual

Version 1.4. FaxCore User Manual Version 1.4 FaxCore User Manual Table of Contents Introduction... 1 Contacting FaxCore... 1 Getting Started... 2 Understanding FaxCore s User Interface... 4 Settings: Your User Profile... 4 Personal Information

More information

Setting up to download Grants Group Application Forms

Setting up to download Grants Group Application Forms Setting up to download Grants Group Application Forms Guidance on setting up Adobe Reader Although it is in common use, we recognise that you may not use Adobe Reader as your preferred pdf reader but it

More information

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 [AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 Length : 2 Days Audience(s) : New or existing users Level : 3 Technology : Adobe Dreamweaver CS6 program Delivery Method : Instructor-Led (Classroom) Course

More information

AvePoint Office Connect Online Manager 1.0

AvePoint Office Connect Online Manager 1.0 AvePoint Office Connect Online Manager 1.0 Administration Guide Issued August 2017 1 Table of Contents Introduction...3 Submitting Documentation Feedback to AvePoint...4 Required Permissions...5 Brower

More information

Business Edition Basic License User Guide

Business Edition Basic License User Guide Business Edition Basic License User Guide Table of Contents 1. Dashboard-----------------------------------------------------------------------------------------3 2. Catalog Search-----------------------------------------------------------------------------------4

More information

HIRING MANAGER S JOB SITE USER S GUIDE. Fitchburg State University Hiring System

HIRING MANAGER S JOB SITE USER S GUIDE. Fitchburg State University Hiring System HIRING MANAGER S JOB SITE USER S GUIDE Fitchburg State University Hiring System TABLE OF CONTENTS INTRODUCTION... 3 GETTING STARTED... 5 CREATING A POSTING.7 Creating Posting from Position Type... 7 Posting

More information

KSU Foundation Accounts Payable Electronic Disbursement Request Submittal Process Sept. 2017

KSU Foundation Accounts Payable Electronic Disbursement Request Submittal Process Sept. 2017 KSU Foundation Accounts Payable Electronic Disbursement Request Submittal Process Sept. 2017 The purpose of this document is to provide an overview and instructions on how to electronically submit disbursement

More information

Webomania Solutions Pvt. Ltd. 2017

Webomania Solutions Pvt. Ltd. 2017 There are different types of Websites. To understand the types, one need to understand what is a website? What is a Website? A website is an online HTML Document, accessible publicly and it contains certain

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

Creating HTML files using Notepad

Creating HTML files using Notepad Reference Materials 3.1 Creating HTML files using Notepad Inside notepad, select the file menu, and then Save As. This will allow you to set the file name, as well as the type of file. Next, select the

More information

Recommended Browser Settings

Recommended Browser Settings Recommended Browser Settings August 2015 This document is intended for restricted use only. Infinite Campus asserts that this document contains proprietary information that would give our competitors undue

More information

AvePoint CallAssist for Microsoft Dynamics CRM. Release Notes

AvePoint CallAssist for Microsoft Dynamics CRM. Release Notes AvePoint CallAssist for Microsoft Dynamics CRM Release Notes Table of Contents AvePoint CallAssist 3.2.5 for Microsoft Dynamics CRM... 3 AvePoint CallAssist 3.2.4 for Microsoft Dynamics CRM... 4 AvePoint

More information