Task 8.2 Using a Shopping Cart

Size: px
Start display at page:

Download "Task 8.2 Using a Shopping Cart"

Transcription

1 Task 8.2 Using a Shopping Cart Objective A shopping cart is a piece of software on a web server that allows visitors to an Internet site to select items for eventual purchase. In this task, you will learn how to use a shopping cart software in a shopping form. Duration: 50 minutes Pre-requisite tasks: 8.1 Instructions Step 1. Download the shopping cart software from Blackboard. Download the cart script from our course website. This is a free shopping cart script that can be used for client-side scripting provided it is referenced in the code. Unzip the files, extracting only the JavaScript files and the English language file to your personal website. You can view a sample of how this cart works at Step 2. Create 3 HTML pages Create the following 3 HTML pages from your template: 1. shopping.html 2. managecart.html 3. checkout.html Step 3. Add the script to the 3 HTML files and give credit to the developer Every HTML page, needed for the shopping cart, will require the following lines of code in the Head section. The commented lines are also required to give credit to the developer. <script type="text/javascript" src ="language-en.js"></script> <script type="text/javascript" language="javascript" src ="nopcart.js"> //============================================================== // NOP Design JavaScript Shopping Cart // // Visit NOP Design at //============================================================== </script> France Cheong Adapted from Glenys Grob s notes 1

2 Therefore add these lines to the head section of shopping.html, managecart.html and checkout.html. Note: A condition of use of this script is that the credit given to the programmer is always left in your pages. As you can see the code above calls the external JavaScript file (that you have just unzipped). Step 4. Create the shopping form in shopping.html Add the following simple shopping form inside the content section of shopping.html. <!-- Start Shopping Cart--> <!-- Product 1 --> <form id="order" action = ""> <br />Product 1: <input type="text" size="2" maxlength="3" name = "QUANTITY" onchange = 'this.value=ckquantity(this.value)' value="1" /> <input type="hidden" name="price" value="19.95" /> <input type="hidden" name="name" value="sample Product 1" /> <input type="hidden" name="id_num" value="id 001" /> <input type="hidden" name="shipping" value="5.95" /> Select a color: <select id="additionalinfo"> <option value="red"> Red</option> <option value="blue"> Blue</option> <option value="white">white</option> Select a size: <select id ="ADDITIONALINFO2"> <option value="small" > Small</option> <option value="medium" > Medium</option> <option value="large" >Large</option> <input type="button" value=' Add to Cart ' onclick='addtocart(this.form)'/> <!-- End Product 1 --> <a title="list Items Bought" href="managecart.html">check out now</a> <!-- End Shopping Cart --> This form will allow a customer to purchase 1 product. We will start with the given code and modify it to suit later. France Cheong Adapted from Glenys Grob s notes 2

3 Step 5. View page shopping.html Load shopping.html in the browser. Try making a selection and then try clicking on the Add to Cart button. You should see this: Step 6. Amend the code in shopping.html to allow purchase of a second product Now offer a 2 nd product: by adding the following form just AFTER the <!-- End Product 1 --> line of code. <!-- product 2 --> <form id="order0" action = ""> <br />Product 2: <input type="text" size="2" maxlength="3" name = "QUANTITY" onchange = 'this.value=ckquantity(this.value)' value="1" /> <input type="hidden" name="price" value="25.95" /> <input type="hidden" name="name" value="sample Product 2" /> <input type="hidden" name="id_num" value="id 002" /> <input type="hidden" name="shipping" value="5.95" /> Select a color: <select id="additionalinfo" style="margin-top: 0px"> <option value="red"> Red</option> <option value="blue"> Blue</option> <option value="white">white</option> Select a size: <select id ="ADDITIONALINFO2"> <option value="small" > Small</option> <option value="medium" > Medium</option> <option value="large" >Large</option> <input type="button" value=' Add to Cart ' onclick='addtocart(this.form)'/> <!-- end product 2 --> Try it out in the browser. France Cheong Adapted from Glenys Grob s notes 3

4 Step 7. Write code in managecart.html to display contents Open managecart.html and enter an appropriate heading in the banner section. Then enter the following code in the body section of managecart.html : <!-- ManageCart Begin--> The items listed below are currently in your shopping cart: <br /> <form action="checkout.html" method="get" onsubmit="return ValidateCart(this)"> <script type="text/javascript"> ManageCart(); </script> <input type="submit" value=" Check Out " /> <!-- ManageCart End --> Step 8. View page shopping.html Refresh shopping.html in the browser and try adding items to the cart again. Click on Check Out Now to see if they have been added to your cart. Step 9. Add a hyperlink to managecart.html Add a Keep Shopping hyperlink to the managecart.html page so that a customer can return to the shopping page and add more items to the cart. Step 10. Write code in checkout.html Enter this code in the body section of checkout.html <!-- Checkout Begin--> The items listed below are currently in your shopping cart: <form action="mailto:your address" method ="post"> <script type="text/javascript"> CheckoutCart(); </script> <br /><br /> Name: <input type="text" name="b_first" /> <input type="text" name="b_last" /><br /> <input type="text" name="b_ " /><br /> <br /><br /> Other form data can go here when you create your prototype cart... <br /><br /> <input type="submit" value=" Submit Order " /> <!-- Checkout End --> Step 11. Troubleshooting If you experience any problems, troubleshoot the following: Have you saved each of the HTML files? Do you have the original JavaScript code that is needed at the top of every page? France Cheong Adapted from Glenys Grob s notes 4

5 Are all the pages and files in your personalwebsite folder? Step 12. Publish to the server Update your menu so there is a link to the Catalogue. Publish your finished shopping pages and the script files to the server. Step 13. Improvements a) Display the price near the product name on the form so the customer knows the cost prior to adding an item to the cart. b) Enter an actual product name instead of Sample Product 1 on your shopping form. Change the alert that comes up when you click Add to Cart. It should echo this product name. c) The shopping page shows Check Out Now and then the button on managecart.html shows Check Out. This is confusing. Alter one to more appropriate wording. Step 14. Expand the catalogue At the moment, there are only two items for sale. Alter the shopping form so that it can handle 3 products. The first 2 rows (forms) have been done for you; you need to add 1 more in the same manner. Study which elements changed from the product 1 form to the product 2 form so that you know what needs to be changed for product 3. Note: Each product is in its own form. So you could simply copy and paste one of the product forms and then make the necessary changes to it such as: The IDs Price Product Name Step 15. More improvements a) Can you make the shopping page look better? That is, can you improve the formatting or positioning of the display of items for sale? France Cheong Adapted from Glenys Grob s notes 5

6 b) Include a clipart to represent the product (it must be copyright free). c) The check-out form needs altering. Find a way to edit the JavaScript file to replace the U.S.A references to tax with a GST tax. Step 16. Maintaining state How does this code keep the products in the shopping cart even when the page is closed? Study the code and then type an explanation at the bottom of your managecart.html page. Step 17. Tidying up Re-publish all changes to the server. Run the shopping cart from the server to make sure it behaves the way you are expecting. Click on the assessment page and then the link to the marking guidelines for your lab assessment. Remember this assessment is next week. So make sure that all of your exercises have been loaded by the start of your lab. Step 18. Homework Make sure you have inserted graphics for each of the products in your shopping pages. What next Complete Test 8.2. Then start to work on Task 8.3. France Cheong Adapted from Glenys Grob s notes 6

ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat

ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat ShoreTel Enterprise Contact Center 8 Installing and Implementing Chat November 2012 Legal Notices Document and Software Copyrights Copyright 1998-2012 by ShoreTel Inc., Sunnyvale, California, USA. All

More information

PDG Software. Site Design Guide

PDG Software. Site Design Guide PDG Software Site Design Guide PDG Software, Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2007 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")

More information

Creating a Website with MS Publisher

Creating a Website with MS Publisher Creating a Website with MS Publisher Getting Started with the Wizard...1 Editing the Home Page...3 Editing Text...3 Editing and Inserting Graphics...4 Inserting Pictures...6 Inserting a Table...6 Inserting

More information

Google AdWords TM Conversion Tracking Guide

Google AdWords TM Conversion Tracking Guide Google AdWords TM Conversion Tracking Guide CONTENTS INTRODUCTION TO CONVERSION TRACKING...2 PRODUCT DESCRIPTION...2 OVERVIEW...2 DEFINITION OF TERMS...3 ADDING THE CODE SNIPPET...4 CONVERSION TRACKING

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

More information

CALIFORNIA STATE UNIVERSITY EAST BAY. Campus Marketplace. eprocurement Training for CSU P-card Holders

CALIFORNIA STATE UNIVERSITY EAST BAY. Campus Marketplace. eprocurement Training for CSU P-card Holders CALIFORNIA STATE UNIVERSITY EAST BAY Campus Marketplace eprocurement Training for CSU P-card Holders Fall 2014 Contents ESM Campus Marketplace Overview... 2 How to Log in to the Shopping Site... 2 Catalog

More information

Best Practice. 2004-2010 Pentasoft Corp. Avactis Ecommerce Shopping Cart Software. All Rights Reserved.

Best Practice. 2004-2010 Pentasoft Corp. Avactis Ecommerce Shopping Cart Software. All Rights Reserved. Best Practice 2004-2010 Pentasoft Corp. Avactis Ecommerce Shopping Cart Software. All Rights Reserved. 1. Introduction 2. Five simple steps to create an Avactis template 2.1. Header and menu design 2.2.

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Visual COBOL ASP.NET Shopping Cart Demonstration

Visual COBOL ASP.NET Shopping Cart Demonstration Visual COBOL ASP.NET Shopping Cart Demonstration Overview: The original application that was used as the model for this demonstration was the ASP.NET Commerce Starter Kit (CSVS) demo from Microsoft. The

More information

Dynamic Web-Enabled Data Collection

Dynamic Web-Enabled Data Collection Dynamic Web-Enabled Data Collection S. David Riba, Introduction Web-based Data Collection Forms Error Trapping Server Side Validation Client Side Validation Dynamic generation of web pages with Scripting

More information

Using the APC Partner Online Marketing Center

Using the APC Partner Online Marketing Center Using the APC Partner Online Marketing Center Getting Started The first step in using the site would be to upload your database. Database files should be submitted to Vermillion in advance so that they

More information

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL ISI ACADEMY for PHP& MySQL web applications Programming ISI ACADEMY Web applications Programming Diploma using PHP& MySQL HTML - CSS - JavaScript PHP - MYSQL What You'll Learn Be able to write, deploy,

More information

MyanPay API Integration with Magento CMS

MyanPay API Integration with Magento CMS 2014 MyanPay API Integration with Magento CMS MyanPay Myanmar Soft Gate Technology Co, Ltd. 1/1/2014 MyanPay API Integration with Magento CMS 1 MyanPay API Integration with Magento CMS MyanPay API Generating

More information

EDIT202 PowerPoint Lab Assignment Guidelines

EDIT202 PowerPoint Lab Assignment Guidelines EDIT202 PowerPoint Lab Assignment Guidelines 1. Create a folder named LABSEC-CCID-PowerPoint. 2. Download the PowerPoint-Sample.avi video file from the course WebCT/Moodle site and save it into your newly

More information

Creating a Web Site with Publisher 2010

Creating a Web Site with Publisher 2010 Creating a Web Site with Publisher 2010 Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This document may be

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

ebay Module for PrestaShop Seller guide

ebay Module for PrestaShop Seller guide ebay Module for PrestaShop Seller guide Based on add-on version 1.7.1, published in 04/2014 Document version 1.4 08/2014 1 Information and help General information To find general information on the module,

More information

Document Services Online Customer Guide

Document Services Online Customer Guide Document Services Online Customer Guide Logging in... 3 Registering an Account... 3 Navigating DSO... 4 Basic Orders... 5 Getting Started... 5 Attaching Files & Print Options... 7 Advanced Print Options

More information

Jolly Server Getting Started Guide

Jolly Server Getting Started Guide JOLLY TECHNOLOGIES Jolly Server Getting Started Guide The purpose of this guide is to document the creation of a new Jolly Server in Microsoft SQL Server and how to connect to it using Jolly software products.

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Get started with your new SellerDeck Responsive Design Inside this guide we will cover some of the basics, on how to change various aspects of your new SellerDeck Responsive Design.

More information

Magento Extension for Add Multiple Products by Capacity Web Solutions

Magento Extension for Add Multiple Products by Capacity Web Solutions Magento Extension for Add Multiple Products by Capacity Web Solutions (Website: - http://www.capacitywebsolutions.com ) CONTENT Introduction.2 Installation 3 Configuration Settings..5 Features.9 Add Multiple

More information

Unique promotion code

Unique promotion code Copyright IBM Corporation 2010 All rights reserved IBM WebSphere Commerce V7 Feature Pack 1 Lab exercise What this exercise is about... 2 What you should be able to do... 2 Introduction... 2 Requirements...

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Publish Joomla! Article 3 Install Joomla! Locally 4 Set

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

Installation Instructions Nochex Payment Module for Magento

Installation Instructions Nochex Payment Module for Magento Installation Instructions Nochex Payment Module for Magento A guide for the installation of the Nochex payment module for Magento. All the information you need to start accepting Nochex payments in Magento.

More information

Module Google Rich Snippets + Product Ratings and Reviews

Module Google Rich Snippets + Product Ratings and Reviews Module Google Rich Snippets + Product Ratings and Reviews Date : June 3 th, 2014 Business Tech Installation Service If you need help installing and configuring your module, we can offer you an installation

More information

NEW IR DATA WAREHOUSE

NEW IR DATA WAREHOUSE GO TO Institutional Research website at http://www.irim.ttu.edu/. a. On the Left side menu, CLICK Data Warehouse link. This will lead you to the main IR Data Warehouse page. b. CLICK IR Data Warehouse

More information

Ready, Set, Go Getting started with Tuscany

Ready, Set, Go Getting started with Tuscany Ready, Set, Go Getting started with Tuscany Install the Tuscany Distribution The first thing you do is to create a folder on you disk into which you will download the TUSCANY distribution. Next you download

More information

Google Analytics Guide

Google Analytics Guide Google Analytics Guide 1 We re excited that you re implementing Google Analytics to help you make the most of your website and convert more visitors. This deck will go through how to create and configure

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information

Flexible Virtuemart 2 Template PureMart (for VM2.0.x only) TUTORIAL. INSTALLATION PureMart VM 2 Template (in 3 steps):

Flexible Virtuemart 2 Template PureMart (for VM2.0.x only) TUTORIAL. INSTALLATION PureMart VM 2 Template (in 3 steps): // Flexible Virtuemart VM2 Template PureMart FOR VIRTUEMART 2.0.x (ONLY) // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3 http://www.gnu.org/licenses/gpl-

More information

Customizing your Blackboard Course

Customizing your Blackboard Course Customizing your Blackboard Course Changing the visual appearance Menu Buttons Changing your course buttons can add a splash of color to your course and make it more visually appealing to your students.

More information

Web Account & E-commerce Quick Reference Guide

Web Account & E-commerce Quick Reference Guide We just made your life easier. Web Account & E-commerce Quick Reference Guide THE COLOR PRINTER, INC. 200 W. Taylor St. Hobbs, NM 88240 (575) 393-8188 (866) 800-8188 info@thecolorprinter.com www.thecolorprinter.com

More information

Combe Abbey School Online Fixtures Diary

Combe Abbey School Online Fixtures Diary Combe Abbey School Online Fixtures Diary USER GUIDE Including Technical Guide Contents Purpose...4 Frequently Asked Questions...5 What is the purpose of the system?...5 Where can the system be used?...5

More information

PASTPERFECT-ONLINE DESIGN GUIDE

PASTPERFECT-ONLINE DESIGN GUIDE PASTPERFECT-ONLINE DESIGN GUIDE INTRODUCTION Making your collections available and searchable online to Internet visitors is an exciting venture, now made easier with PastPerfect-Online. Once you have

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Online Course Syllabus CS406/BA406 Managing Web Technologies. Important Notes:

Online Course Syllabus CS406/BA406 Managing Web Technologies. Important Notes: Online Course Syllabus CS406/BA406 Managing Web Technologies Important Notes: This document provides an overview of expectations for this online course and is subject to change prior to the term start.

More information

GETTING STARTED WITH SQL SERVER

GETTING STARTED WITH SQL SERVER GETTING STARTED WITH SQL SERVER Download, Install, and Explore SQL Server Express WWW.ESSENTIALSQL.COM Introduction It can be quite confusing trying to get all the pieces in place to start using SQL. If

More information

Getting Started with Mal s. Adding Buy Now buttons to your web page

Getting Started with Mal s. Adding Buy Now buttons to your web page Getting Started with Mal s Adding Buy Now buttons to your web page October 2008 In this guide we will show you how easy it is to add "Buy Now" buttons to your web page. Open your web page in any html editor

More information

1. Open the Practice web site. 2. Open the favorite.htm file. 3. Select the text to be used as the hyperlink for the first favorite web site.

1. Open the Practice web site. 2. Open the favorite.htm file. 3. Select the text to be used as the hyperlink for the first favorite web site. FrontPage 2003 Lesson 13 - Hyperlinks Types of Hyperlinks Hyperlinks are the primary method used to navigate between pages and Web sites. Links can point to other web pages, web sites, graphics, files,

More information

BASIC DRUPAL TRAINING. Getting Started with Digital Commons

BASIC DRUPAL TRAINING. Getting Started with Digital Commons BASIC DRUPAL TRAINING Getting Started with Digital Commons Contents Overview... 2 Log in to Staging Site... 2 Explore the Editing Environment... 4 Make a Simple Edit to an Existing Page... 5 Create a New

More information

Creating a Website with Publisher 2013

Creating a Website with Publisher 2013 Creating a Website with Publisher 2013 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2015 KSU Division of University Information Technology

More information

PDG Shopping Cart 4.0. Quick Start Guide

PDG Shopping Cart 4.0. Quick Start Guide PDG Shopping Cart 4.0 Quick Start Guide , Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2004 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")

More information

HTML Forms and CONTROLS

HTML Forms and CONTROLS HTML Forms and CONTROLS Web forms also called Fill-out Forms, let a user return information to a web server for some action. The processing of incoming data is handled by a script or program written in

More information

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file. Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded

More information

GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4

GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4 GJC Web Design Virtuemart 2.0 Product Product Review Package v1.4 This is the VirtueMart 2.0 Product Review Package. Installs as a native Joomla Package. You can download it here - Download Price is 40.00

More information

Further web design: HTML forms

Further web design: HTML forms Further web design: HTML forms Practical workbook Aims and Learning Objectives The aim of this document is to introduce HTML forms. By the end of this course you will be able to: use existing forms on

More information

Download and Installation Instructions. Visual C# 2010 Help Library

Download and Installation Instructions. Visual C# 2010 Help Library Download and Installation Instructions for Visual C# 2010 Help Library Updated April, 2014 The Visual C# 2010 Help Library contains reference documentation and information that will provide you with extra

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

USER GUIDE - May 2010

USER GUIDE - May 2010 USER GUIDE - May 2010 Login...2 Browse.................................................................. 3 By Product Type By Manufacturer Search....4 By Keyword Via Quick Find Via Quick Order Search Results

More information

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three

More information

Using Impatica for Power Point

Using Impatica for Power Point Using Impatica for Power Point What is Impatica? Impatica is a tool that will help you to compress PowerPoint presentations and convert them into a more efficient format for web delivery. Impatica for

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

Manual - Schlatter E-Shop

Manual - Schlatter E-Shop Manual - Schlatter E-Shop Content 1 Preliminary...3 2 Logon at Shatter E-Shop...3 3 Welcome Page...4 4 Create New Shopping Cart...5 5 Catalog...6 6 Create Orders in E-Shop...9 7 Create Quotations in E-Shop...9

More information

Criteo Tags & Feed Extension for Magento

Criteo Tags & Feed Extension for Magento Criteo Tags & Feed Extension for Magento Documentation Author Web In Color Date: December 23, 2014 Version: 1.3.1 Compatibility: Magento 1.5.x 1.9.x Document Name: wic_criteo_en.pdf Contact: contact@webincolor.fr

More information

Web Content Management Training Manualv3

Web Content Management Training Manualv3 City & County of San Francisco Powered by Innovation DT City & County of Sa Departme Techno Powered by Innova DEPARTMENT OF TECHNOLOGYDT Web Content Management Training Manualv3 Department of Technology

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

NovaBACKUP Remote Workforce Version 12.5 Cloud Restore

NovaBACKUP Remote Workforce Version 12.5 Cloud Restore NovaBACKUP Remote Workforce Version 12.5 Cloud Restore NovaStor / November 2011 Rev 20111114 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and

More information

Get Started MyLab and Mastering for Blackboard Learn Students

Get Started MyLab and Mastering for Blackboard Learn Students Get Started MyLab and Mastering for Blackboard Learn Students March 21, 2013 Copyright Notice Copyright 2013 by Pearson Education. All rights reserved. No part of the contents of this book may be reproduced

More information

Clip Art in Office 2000

Clip Art in Office 2000 Clip Art in Office 2000 In the process of making a certificate, we will cover: Adding clipart and templates from the Microsoft Office Clip Gallery, Modifying clip art by grouping and ungrouping, Flipping

More information

E-commerce. Further Development 85

E-commerce. Further Development 85 Further Development 85 If you ve ever bought anything online, you ll know how simple the process can be as a buyer. But how difficult is it to set up your own e-store? Fortunately with WebPlus, the process

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

U of S Course Tools. Copying a Development/Test Course into a Live Course in the U of S Course Tools For Instructors

U of S Course Tools. Copying a Development/Test Course into a Live Course in the U of S Course Tools For Instructors U of S Course Tools Copying a Development/Test Course into a Live Course in the U of S Course Tools For Instructors June 2014 U of S Course Tools Background STEP All courses at the U of S are available

More information

Setting up a basic database in Access 2003

Setting up a basic database in Access 2003 Setting up a basic database in Access 2003 1. Open Access 2. Choose either File new or Blank database 3. Save it to a folder called customer mailing list. Click create 4. Double click on create table in

More information

NOTE: Flex Funding and Renewal Account Reports are available in Web CRD.

NOTE: Flex Funding and Renewal Account Reports are available in Web CRD. IARD Reports About Reports The Reports feature enables firms to request standard reports generated from data stored in Web CRD and IARD. Requested reports are available online for viewing or downloading.

More information

Email Signatures and Out of Office Messages

Email Signatures and Out of Office Messages Email Signatures and Out of Office Messages When you send an email from your LSBU email account, you are representing LSBU. The way that you identify yourself, particularly to people outside of the organization

More information

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team

User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team User Guide for Smart Former Gold (v. 1.0) by IToris Inc. team Contents Offshore Web Development Company CONTENTS... 2 INTRODUCTION... 3 SMART FORMER GOLD IS PROVIDED FOR JOOMLA 1.5.X NATIVE LINE... 3 SUPPORTED

More information

Microsoft Access Calendar Scheduling Database/Template Installation Instructions

Microsoft Access Calendar Scheduling Database/Template Installation Instructions Winning Solutions, Inc. Microsoft Access Calendar Scheduling Database/Template Installation Instructions Thanks for your interest in our Microsoft Access Calendar Scheduling Database Template. This article

More information

Skipjack ezpay Secure Online Order Form User Guide

Skipjack ezpay Secure Online Order Form User Guide Skipjack ezpay Secure Online Order Form User Guide About this Document...3 Copyright Notice... 3 Publication History... 3 Documentation Conventions... 4 Assumptions Used in this Guide... 4 Obtaining Additional

More information

AD Phonebook 2.2. Installation and configuration. Dovestones Software

AD Phonebook 2.2. Installation and configuration. Dovestones Software AD Phonebook 2.2 Installation and configuration 1 Table of Contents Introduction... 3 AD Self Update... 3 Technical Support... 3 Prerequisites... 3 Installation... 3 Adding a service account and domain

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

Exporting Your Blackboard Courses

Exporting Your Blackboard Courses Exporting Your Blackboard Courses Blackboard courses remain on the server for one year after the end of the semester in which they are taught. If you wish to have access to your Blackboard courses after

More information

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade Exercise: Creating two types of Story Layouts 1. Creating a basic story layout (with title and content)

More information

ncart (Shopping Cart Extension for nbill) Documentation

ncart (Shopping Cart Extension for nbill) Documentation ncart (Shopping Cart Extension for nbill) Documentation Version 1.1 Last Updated: 4 th February 2015 2015 Netshine Software Limited Author: Russell Walker Introduction The standard mechanism for placing

More information

Madison Area Technical College. MATC Web Style Guide

Madison Area Technical College. MATC Web Style Guide Madison Area Technical College MATC Web Style Guide July 27, 2005 Table of Contents Topic Page Introduction/Purpose 3 Overview 4 Requests for Adding Content to the Web Server 3 The MATC Public Web Template

More information

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin:

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin: CONTENT MANAGER GUIDELINES Content Manager is a web-based application created by Scala that allows users to have the media they upload be sent out to individual players in many locations. It includes many

More information

CREATING WEB FORMS WEB and FORMS FRAMES AND

CREATING WEB FORMS WEB and FORMS FRAMES AND CREATING CREATING WEB FORMS WEB and FORMS FRAMES AND FRAMES USING Using HTML HTML Creating Web Forms and Frames 1. What is a Web Form 2. What is a CGI Script File 3. Initiating the HTML File 4. Composing

More information

PEP 4 Georgia First Marketplace (Sciquest)

PEP 4 Georgia First Marketplace (Sciquest) This course covers the following objectives 1) Reviewing PEP1-PEP3. 2) Introduction to GA First Marketplace. 3) Marketplace Shopper. 4) Marketplace User/Requester. 5) Enhanced Automatic Approval Workflow.

More information

This guide shows you the process for adding ecart to your online store so that you can start selling products online.

This guide shows you the process for adding ecart to your online store so that you can start selling products online. ecart will add invaluable checkout functionality to your online store. This includes the ability to create and design a shopping cart page, add products to a cart, and create all the necessary pages for

More information

MASTERTAG DEVELOPER GUIDE

MASTERTAG DEVELOPER GUIDE MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...

More information

Module Google Remarketing + Dynamic

Module Google Remarketing + Dynamic Module Google Remarketing + Dynamic Date : December 13 th, 2013 Business Tech Installation Service If you need help installing and configuring your module, we can offer you an installation service, which

More information

COMMON CUSTOMIZATIONS

COMMON CUSTOMIZATIONS COMMON CUSTOMIZATIONS As always, if you have questions about any of these features, please contact us by e-mail at pposupport@museumsoftware.com or by phone at 1-800-562-6080. EDIT FOOTER TEXT Included

More information

Getting Started with Android Smartphones and ThingWorx

Getting Started with Android Smartphones and ThingWorx Smartphones and ThingWorx How to send and visualize data from your Android phone using ThingWorx Revision # Date ThingWorx Revision Changes Owner 1.0 18-05-15 5.1.0.433 2.0 10.05.15 Updated based on Andy

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Producing Standards Based Content with ToolBook

Producing Standards Based Content with ToolBook Producing Standards Based Content with ToolBook Contents Using ToolBook to Create Standards Based Content... 3 Installing ToolBook... 3 Creating a New ToolBook Book... 3 Modifying an Existing Question...

More information

Download and Installation Instructions. Java JDK Software for Windows

Download and Installation Instructions. Java JDK Software for Windows Download and Installation Instructions for Java JDK Software for Windows Updated January, 2012 The TeenCoder TM : Java Programming and TeenCoder TM : Android Programming courses use the Java Development

More information

Patient Portal. Accessing the Patient Portal. How to Begin: Enter first and last name, date of birth and create a user name and password.

Patient Portal. Accessing the Patient Portal. How to Begin: Enter first and last name, date of birth and create a user name and password. Patient Portal How to Begin: If you provided an email address when you registered as a patient, you can expect an email after your discharge that will be sent directly from CPSI, our Electronic Health

More information

Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005

Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005 Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005 Introduction: OpenOffice Writer is a word processing application

More information

Visual Dialogue User Guide. Version 6.1

Visual Dialogue User Guide. Version 6.1 Visual Dialogue User Guide Version 6.1 2015 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its

More information

E-Blocks Easy Internet Bundle

E-Blocks Easy Internet Bundle Page 1 Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course

More information

Adding a CareCredit link to your practice website can help increase its ranking in online search engines like Google

Adding a CareCredit link to your practice website can help increase its ranking in online search engines like Google Adding a CareCredit link to your practice website can help increase its ranking in online search engines like Google The CareCredit Website Toolkit contains multiple web assets for you to easily customize

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Action settings and interactivity

Action settings and interactivity Interactivity in Powerpoint Powerpoint includes a small set of actions that can be set to occur when the user clicks, or simply moves the cursor over an object. These actions consist of links to other

More information

Welcome to EMP Monitor (Employee monitoring system):

Welcome to EMP Monitor (Employee monitoring system): Welcome to EMP Monitor (Employee monitoring system): Overview: Admin End. User End. 1.0 Admin End: Introduction to Admin panel. Admin panel log in. Introduction to UI. Adding an Employee. Getting and editing

More information

Western Kentucky University s Promotional Product Web Store. User Guide

Western Kentucky University s Promotional Product Web Store. User Guide Western Kentucky University s Promotional Product Web Store User Guide e0001df 07/01/2010 Guy Brown Promotional s Web Store User Guide This user guide was created to help make your web store experience

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information