INTRODUCTION TO COLDFUSION 8

Size: px
Start display at page:

Download "INTRODUCTION TO COLDFUSION 8"

Transcription

1 INTRODUCTION TO COLDFUSION 8

2 INTRODUCTION TO COLDFUSION 8 ABOUT THE COURSE TECHNICAL REQUIREMENTS ADOBE COLDFUSION RESOURCES UNIT 1: GETTING STARTED WITH COLDFUSION 8 INSTALLING SOFTWARE AND COURSE FILES UNDERSTANDING DYNAMIC WEB PAGES INTRODUCING COLDFUSION 8 EXPLORING DREAMWEAVER CS4 UNIT 2: BUILDING COLDFUSION APPLICATIONS LESSON 1: CREATING COLDFUSION VARIABLES LESSON 2: DISPLAYING VARIABLE VALUES LESSON 3: INCLUDING FILES LESSON 4: COMMENTING CODE ON YOUR OWN: VIEWING THE COURSE APPLICATION UNIT 3: PUBLISHING DATABASE CONTENT LESSON 1: CONNECTING TO A DATABASE LESSON 2: QUERYING A DATABASE TABLE LESSON 3: VIEWING DEBUG DATA LESSON 4: DUMPING A RECORDSET TO A BROWSER LESSON 5: DISPLAYING DATABASE DATA LESSON 6: USING THE DYNAMIC TABLE TOOL LESSON 7: USING THE RESULTSET STRUCTURE DATA LESSON 8: USING COLDFUSION FUNCTIONS ON YOUR OWN: CREATING THE HOME PAGE UNIT 4: BUILDING FORMS WITH COLDFUSION LESSON 1: UNDERSTANDING HTML FORMS LESSON 2: ENABLING DEBUG OUTPUT LESSON 3: SELF-POSTING FORMS LESSON 4: DETERMINING FORM SUBMISSION LESSON 5: EVALUATING FORM VARIABLES LESSON 6: INTRODUCING COLDFUSION FORMS ON YOUR OWN: CREATING A SEARCH FORM UNIT 5: BUILDING SEARCH INTERFACES LESSON 1: USING FORM DATA IN DYNAMIC QUERIES LESSON 2: PRESERVING FORM DATA LESSON 3: CREATING DYNAMIC SQL FOR MULTIPLE SEARCH CRITERIA LESSON 4: USING TEXT SEARCHES LESSON 5: USING LIST SEARCHES ON YOUR OWN: BUILDING CHECK ORDER STATUS LOGIC UNIT 6: BUILDING A DRILL-DOWN INTERFACE LESSON 1: USING DYNAMIC URL PARAMETERS

3 LESSON 2: CREATING A DATA DRILL-DOWN LESSON 3: CREATING ON-THE-FLY PDF DOCUMENTS LESSON 4: DISPLAYING DATA IN A TABBED INTERFACE ON YOUR OWN: DISPLAYING ORDER ITEM INFORMATION UNIT 7: INSERTING NEW DATA LESSON 1: BUILDING AN INSERT FORM PAGE LESSON 2: VALIDATING COLDFUSION FORMS LESSON 3: BUILDING INSERT ACTION LOGIC LESSON 4: REDIRECTING PROCESS FLOW ON YOUR OWN: ADDING AN ART PIECE UNIT 8: UPDATING AND DELETING DATA LESSON 1: BUILDING AN UPDATE FORM PAGE LESSON 2: BUILDING UPDATE LOGIC LESSON 3: DELETING RECORDS FROM THE DATABASE LESSON 4: IMPROVING SQL SECURITY ON YOUR OWN: UPDATING ART WORK DATA UNIT 9: REUSING TEMPLATES LESSON 1: REUSING CODE LESSON 2: USING USER-DEFINED FUNCTIONS LESSON 3: INTRODUCING COLDFUSION COMPONENTS ON YOUR OWN: CREATE AND USE A CUSTOM TAG UNIT 10: SECURING AN APPLICATION LESSON 1: USING THE APPLICATION FRAMEWORK LESSON 2: USING APPLICATION VARIABLES LESSON 3: PERSISTENT STATE VARIABLES AND WORKING WITH SESSION VARIABLES

4 INTRODUCTION TO COLDFUSION 8 ABOUT THE COURSE Welcome to Introduction to ColdFusion 8. This course introduces experienced web developers to the fundamentals of ColdFusion 8 from Adobe Systems, Inc.. This is a project-based course where you will learn how to create dynamic, database-driven web applications using the Dreamweaver CS4 and ColdFusion 8 development environment. The course is structured in the form of units arranged around a central theme. Lessons within each unit delve deeper into different aspects of a theme. Following each lesson are Step-by-Step activities in which you build independent, dynamic, data-driven web applications. At the end of each unit is a set of On Your Own activities that will help to further practice the skills you have learned. Each On Your Own activity is organized to help you complete a specific aspect of the Art Gallery dynamic, data-driven ColdFusion web application. Unit 1: Getting Started with ColdFusion 8 In this unit, you are introduced to the fundamentals of dynamic web applications with ColdFusion 8 using Dreamweaver CS4 as the development environment. As you complete this lesson you will learn the following skills to build dynamic, data-driven web applications: Install and configure ColdFusion 8 Install and configure Dreamweaver CS4 Install and configure the course files Explain the advantages of dynamic web pages Define key features and components of ColdFusion 8 Describe basic and enterprise development configurations Test the development environment Create a site in Dreamweaver CS4 Unit 2: Building Basic ColdFusion Applications This unit covers the basics of ColdFusion and focuses on best practices and design while stressing the importance of usability, optimization and performance. In the On Your Own activity, you will explore the overall structure of the application that you will work with during the course. You do not create any pages at this point. As you complete these activities you will learn the following basic dynamic web application development skills: Set a local variable Display variables on a page Include common code How to comment code Unit 3: Publishing Database Content In this unit you will learn how to create dynamic web pages using content retrieved from a database. In the On Your Own activity, you will build the Art Gallery home page using CFML tags such as <cfquery> and <cfoutput>. As you complete these activities you will learn the following skills to build dynamic, data-driven web applications:

5 Create a data source Query database tables Test a query and view debugging information Display query data on a page Access the resultset structure Use ColdFusion functions Unit 4: Building Forms with ColdFusion In this unit you will learn how to process data submitted by users through a web-based HTML form. In the On Your Own activity, you will create an HTML form to allow the user to search for an order. Through the completion of these activities you will learn the following skills to build dynamic, data-driven web applications: Create an HTML form View form variables in debug data Post form values to a form page Perform conditional logic Detect the presence of form variables Use a ColdFusion form Unit 5: Building Search Interfaces In this unit you will learn how to create forms that allow users to search database content. In the On Your Own activity, you will write instructions that tells the form to use the values entered by the user in the form page to create a dynamic SELECT statement and return the status of order(s). As you complete these activities you will learn the following skills to build dynamic, data-driven web applications: Use form data in a dynamic query Preserve user input upon form submission Use multiple search criteria in a dynamic query Use text and list searches Unit 6: Building a Drill-Down Interface In this unit you will learn how to create a drill-down interface and display the detailed information in HTML, PDF and grid interfaces. In the On Your Own activity, you will create links in the artist ID column to display the artwork associated with each artist. Through the completion of these activities you will learn the following skills to build dynamic, data-driven web applications: Use URL parameters to pass data from one page to another Use URL parameters to create a dynamic data drill-down page Create PDF documents with dynamic data Display data in a sortable grid Unit 7: Inserting New Data In this project, you will use Dreamweaver CS4 to customize a ColdFusion form that lets users add a new art piece to the Gallery. In the On Your Own activity, you will customize your own

6 ColdFusion insert form that lets users add a new art piece to the Art Gallery database. Through the completion of these activities you will learn the following skills to build dynamic, datadriven web applications: Create an insert form Implement user input validation Create insert logic Redirect processing to another page Unit 8: Updating and Deleting Data In this unit you will learn how to update and delete records from a database table. You will also learn how to improve security on the dynamic variables you use in your queries. In the On Your Own activity, you use a pre-created list page of all pieces of artwork and create a drill-down functionality to obtain a form with the selected row's data for update. Through the completion of these activities you will learn the following skills to build dynamic, data-driven web applications: Build an update form Pre-fill form controls Update a database record using the <cfquery> tag and the SQL UPDATE statement Delete a database record using the <cfquery> tag and the SQL DELETE statement Define the acceptable data types for the dynamic variables used in SQL statements Unit 9: Reusing Templates In this unit you learn how to insert user-supplied data into the database. In the On Your Own activity, you create and use a custom tag to display the date in the Art Gallery pages. As you complete these activities you learn the following skills to build dynamic, data-driven web applications: Call CFML custom tags from your application Call user-defined functions Call ColdFusion components from your application Unit 10: Securing an Application In this unit you will be introduced to various ways to add security to ColdFusion web pages using application and session variables. In the final Step by Ste activities, you work directly with the On Your Own website files to secure access to the application. Through the completion of these activities you learn the following skills to build dynamic, data-driven web applications: Secure access to your web pages Use the application framework Use application variables Use session variables Prerequisites The prerequisites for this course are: Familiarity with web terminology

7 An understanding of web server characteristics Experience with the HTML tag set and syntax Familiarity with the SQL command set, including SELECT, INSERT and UPDATE

8 TECHNICAL REQUIREMENTS This section outlines what you will need to develop the ColdFusion application in the Introduction to ColdFusion 8 course. Reviewing the minimum system requirements Windows Intel Pentium II or AMD Athlon processor Microsoft Windows 2000 Professional with Service Pack 3; Windows 2000 Server, Advanced Server, or Datacenter Server with Service Pack 3; Windows Server 2003 Web, Standard, or Enterprise Edition with Service Pack 1 and R2; Windows XP Professional or Home Edition; or Windows Vista 512MB of RAM (1GB recommended) 500MB of available hard-disk space DVD-ROM drive Color monitor with 800 x 600 resolution, 256 colors (1024 x 768 resolution, millions of colors recommended) Note: This course has only been tested on the Windows platform. To review ColdFusion system requirements for other platforms, go to: Reviewing the required software Adobe ColdFusion 8 Adobe Dreamweaver CS4 A web browser The course application and files stored in the correct directory Winzip software

9 ADOBE COLDFUSION RESOURCES There is a robust supply of Adobe and ColdFusion resources available to you including books, tutorials, user groups, and certification exams. ColdFusion documentation Adobe ColdFusion 8 documentation is available in both electronic and printed formats. Electronic documentation Adobe ColdFusion 8 help is available: In the ColdFusion Administrator, click the Documentation link located at the top of every page. By directly browsing or depending on your web server. In Dreamweaver CS4, select Help > Using ColdFusion. Online Adobe Documentation at Printed documentation Some printed documentation ships with the professional edition of ColdFusion 8 including: CFML Quick Reference Installing and Using ColdFusion 8, Configuring and Administering ColdFusion 8 This and additional documentation including ColdFusion 8 Developers Guide and CFML Reference is available through the Adobe online store: Online resources The Adobe website features lots of great information, both for specific products and crossproduct integration. Adobe ColdFusion support website Find resources to answer your technical questions including: Tech notes Online forums What's new Adobe ColdFusion developer exchange Obtain fresh content including: Tips from experienced developers Sample applications

10 Tutorials White papers Downloads Adobe user groups Adobe User Groups provide a forum of support and technology to web professionals of all levels and professions. Whether you're a designer, seasoned developer or just starting out, Adobe User Groups strengthen community, increase networking, unveil the latest technology innovations and reveal the techniques that turn novices into experts, and experts into web gurus. Developer certification resources Are you looking for ways to set yourself apart and advance your career? The Adobe Certified Professional Program can help you achieve your goals. Adobe certified developers and designers are considered the elite in the web development community. Certification exams are available in over 2,500 testing centers worldwide. Adobe Press resources Adobe Press is a great resource for supplementing and expanding your product knowledge with tutorials and comprehensive guides. Whether you are a beginner, seasoned professional, designer, or developer, Adobe Press has a book for you. Are you certified? Need help to prepare? Adobe Press Certified Study Guides are now available. These guides are written by recognized Certified Adobe experts, most of whom contributed to the exam itself.

Adobe ColdFusion level 1 course content (3-day)

Adobe ColdFusion level 1 course content (3-day) http://www.multimediacentre.co.za Cape Town: 021 790 3684 Johannesburg: 011 083 8384 Adobe ColdFusion level 1 course content (3-day) Course Description: ColdFusion 9 Fundamentals is a 3-day course that

More information

QUALIFICATION: ADOBE DREAMWEAVER CC (2017): PART 1 MODE OF DELIVERY: CONTACT LEARNING

QUALIFICATION: ADOBE DREAMWEAVER CC (2017): PART 1 MODE OF DELIVERY: CONTACT LEARNING JOHANNESBURG CAMPUS: Tel: (011) 718-4000 Fax: (011) 482-1814 Cnr Main Road and Landau Terrace, Melville Ext 2 P O Box 91714, Auckland Park, 2006 Email: studentservices@milpark.ac.za Website: www.milpark.ac.za

More information

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code

SOLO NETWORK. Adobe Flash Catalyst CS5.5. Create expressive interfaces and interactive content without writing code (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971 Adobe Flash Catalyst CS5.5 Create expressive interfaces and interactive content without writing

More information

Managing and Maintaining a Microsoft Windows Server 2003 Environment, Second Edition

Managing and Maintaining a Microsoft Windows Server 2003 Environment, Second Edition A01T622892.fm Page 1 Tuesday, March 28, 2006 11:01 PM MCSA/MCSE Self-Paced Training Kit (Exam 70-290): Managing and Maintaining a Microsoft Windows Server 2003 Environment, Second Edition Dan Holme and

More information

QUALIFICATION: ADOBE INDESIGN CC (2017): PART 1 MODE OF DELIVERY: CONTACT LEARNING

QUALIFICATION: ADOBE INDESIGN CC (2017): PART 1 MODE OF DELIVERY: CONTACT LEARNING JOHANNESBURG CAMPUS: Tel: (011) 718-4000 Fax: (011) 482-1814 Cnr Main Road and Landau Terrace, Melville Ext 2 P O Box 91714, Auckland Park, 2006 Email: studentservices@milpark.ac.za Website: www.milpark.ac.za

More information

3M Molecular Detection System Software Upgrade/Installation Instructions

3M Molecular Detection System Software Upgrade/Installation Instructions User Manual Supplement Number: TB.342837.03 Effective Date: March 2018 Supersedes: TB.342837.02 Technology Platform: 3M Molecular Detection System Originating Location: St. Paul, MN 3M Molecular Detection

More information

TOP 50 JSP INTERVIEW QUESTIONS &AMP; ANSWERS - CAREER GURU99

TOP 50 JSP INTERVIEW QUESTIONS &AMP; ANSWERS - CAREER GURU99 PDF TOP 50 JSP INTERVIEW QUESTIONS &AMP; ANSWERS - CAREER GURU99 JSP INTERVIEW QUESTIONS - TUTORIALSPOINT 1 / 5 2 / 5 3 / 5 jsp questions and answers pdf JSP stands for Java Server Pages. It is a presentation

More information

Book Xpress Quick Startup Guide

Book Xpress Quick Startup Guide Book Xpress Installation Windows 1) Insert the installation DVD and click on Note: System requirements: Pentium 4, 2.8 GHz Processor and above 1 GB RAM + 1 GB free disk space CD/DVD- ROM drive Microsoft

More information

Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system.

Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system. TRAINEE WORKBOOK Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system. Table of Contents 1 Introduction... 4 1.1 Welcome... 4 1.2 About this course... 4 1.2.1 Course description... 4 1.2.2 Audience...

More information

VMware View Upgrade Guide

VMware View Upgrade Guide View 4.0 View Manager 4.0 View Composer 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for

More information

Installation Guide of SQL Server Express

Installation Guide of SQL Server Express B Installation Guide of SQL Server Express A. Hardware and Software Requirements for SQL Server Express 3 B. Installation Procedures 6 1. Microsoft.NET Framework 3.5 SP1 6 2. Microsoft.NET Framework 4.0

More information

PHRED Installation Guide

PHRED Installation Guide PHRED Installation Guide ColdFusion Version 10, SQL Server Database January 27, 2014 PHRED Installation Guide Page 1 Table of Contents Application Environment... 3 Application Tailoring... 4 Web Server

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

Alchemex. Web Reporting. Learning Services Alchemex Web Module

Alchemex. Web Reporting. Learning Services Alchemex Web Module Alchemex Web Reporting 1 Table of Contents About The Web Module... 1 Web Module Benefits and Features... 3 Product Features... 3 Product Benefits... 3 Customer Benefits... 3 How It Works... 4 Users Guide...

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Master Presenter Manual Effective from: December 2012 Ver. 1.0

Master Presenter Manual Effective from: December 2012 Ver. 1.0 Master Presenter Manual 2D Desiign & Aniimatiion Suiite 3057 Effective from: December 2012 Ver. 1.0 Amendment Record Version No. Effective Date Change Replaced Pages 1.0 December 2012 New - Aptech Limited

More information

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CIW JAVASCRIPT FUNDAMENTALS CERTIFICATION WEB 2391 Class Hours: 1.0 Credit Hours: 1.0 Laboratory Hours: 0.0 Revised: Fall 06 Note: This course

More information

A Primer in Web Application Development

A Primer in Web Application Development A Primer in Web Application Development The purpose of this primer is to provide you with some concept of how web applications work. You will look at some database information, some application development

More information

DOWNLOAD OR READ : TOGAF EXAM HELP PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : TOGAF EXAM HELP PDF EBOOK EPUB MOBI DOWNLOAD OR READ : TOGAF EXAM HELP PDF EBOOK EPUB MOBI Page 1 Page 2 togaf exam help togaf exam help pdf togaf exam help This is an Open Book Test and you will have access to a searchable pdf version of

More information

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Welcome

Xerox 700 Digital Color Press with Integrated Fiery Color Server. Welcome Xerox 700 Digital Color Press with Integrated Fiery Color Server Welcome 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45072712

More information

Fiery EX4112/4127. Welcome

Fiery EX4112/4127. Welcome Fiery EX4112/4127 Welcome 2007 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45063989 17 August 2007 WELCOME 5 WELCOME This Welcome

More information

Your Student s Head Start on Career Goals and College Aspirations

Your Student s Head Start on Career Goals and College Aspirations Your Student s Head Start on Career Goals and College Aspirations INFORMATION TECHNOLOGY (IT) NETWORKING PATHWAY The Destinations Networking Pathway prepares students to test and evaluate computer network

More information

Fiery PRO 80 /S450 65C-KM Color Server. Welcome

Fiery PRO 80 /S450 65C-KM Color Server. Welcome Fiery PRO 80 /S450 65C-KM Color Server Welcome 2007 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45067303 01 November 2007 WELCOME

More information

Note: You must already be enrolled and issued with a Username and Password

Note: You must already be enrolled and issued with a Username and Password Diploma of Management and Diploma of International Business Student Login: Note: You must already be enrolled and issued with a Username and Password www.hs.edu Start here Select your course Enter Username

More information

CCENT/CCNA ICND Official Cert Guide PDF

CCENT/CCNA ICND Official Cert Guide PDF CCENT/CCNA ICND1 100-105 Official Cert Guide PDF Trust the best-selling Official Cert Guide series from Cisco Press to help you learn, prepare, and practice for exam success. They are built with the objective

More information

M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r

M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r M i c r o s o f t S Q L S e r v e r I n s t a l l a t i o n G u i d e for A D S S S e r v e r A S C E R T I A LTD S E P T E M B E R 2 0 1 8 D o c u m e n t V e r s i o n - 5.9. 0. 1 Ascertia Limited. All

More information

Automating Administration with Windows PowerShell (M10961)

Automating Administration with Windows PowerShell (M10961) Automating Administration with Windows PowerShell (M10961) COURSE OVERVIEW: In this PowerShell course, you will gain the fundamental knowledge and skills to use Windows PowerShell for administering and

More information

Exploring Adobe InDesign CS6 (The Computing Exploring Series) Ebooks Free

Exploring Adobe InDesign CS6 (The Computing Exploring Series) Ebooks Free Exploring Adobe InDesign CS6 (The Computing Exploring Series) Ebooks Free With many software guides serving as high-tech "recipe books," teaching cookie-cutter habits with little relevance to complex,

More information

F-Secure PSB Getting Started Guide

F-Secure PSB Getting Started Guide F-Secure PSB Getting Started Guide F-Secure PSB Getting Started Guide TOC 3 Contents Chapter 1: Introduction...5 Chapter 2: Getting Started...7 Creating a new account...8 Downloading Software...9 Recovering

More information

2072 : Administering a Microsoft SQL Server 2000 Database

2072 : Administering a Microsoft SQL Server 2000 Database 2072 : Administering a Microsoft SQL Server 2000 Database Introduction This course provides students with the knowledge and skills required to install, configure, administer, and troubleshoot the client-server

More information

Autodesk Revit Structure 2012 System Requirements and Recommendations. Minimum: Entry-level configuration. Operating System Microsoft Windows 7 32-bit

Autodesk Revit Structure 2012 System Requirements and Recommendations. Minimum: Entry-level configuration. Operating System Microsoft Windows 7 32-bit Autodesk Revit Structure 2012 System s and Recommendations Minimum: Entry-level configuration Operating System Microsoft Windows 7 32-bit Microsoft Windows Vista 32-bit (SP2 or later) Business Microsoft

More information

EX700i Print Server/Integrated Fiery Color Server. Welcome

EX700i Print Server/Integrated Fiery Color Server. Welcome EX700i Print Server/Integrated Fiery Color Server Welcome 2011 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45099409 22 June 2011 WELCOME

More information

Implementing and Administering Security in a Microsoft Windows 2000 Network Course 2820 Five days Instructor-led Published: February 17, 2004

Implementing and Administering Security in a Microsoft Windows 2000 Network Course 2820 Five days Instructor-led Published: February 17, 2004 Implementing and Administering Security in a Microsoft Windows 2000 Network Course 2820 Five days Instructor-led Published: February 17, 2004 Introduction This five-day instructor-led course provides students

More information

User s Guide. Know Your USA

User s Guide. Know Your USA User s Guide Children's Technology Review Editor's Choice Award "If you are looking for clean, affordable geography practice, this is a good choice. or 4.4 As featured in their Back to School technology

More information

Electronic Grants Administration & Management System - EGrAMS

Electronic Grants Administration & Management System - EGrAMS Electronic Grants Administration & Management System - EGrAMS Introduction EGrAMS is an enterprise-wide web-based scalable, configurable, business rule driven and workflow based end-to-end electronic grants

More information

Fiery Network Controller for Xerox WorkCentre 7800 Series. Welcome

Fiery Network Controller for Xerox WorkCentre 7800 Series. Welcome Fiery Network Controller for Xerox WorkCentre 7800 Series Welcome 2013 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45109462 17 January

More information

Implementing Desktop Application Environments

Implementing Desktop Application Environments Implementing Desktop Application Environments Course # Exam: Prerequisites Technology: Delivery Method: Length: 20416 70-416 20415 Windows Server Instructor-led (classroom) 5 Days Overview About this Course

More information

Mcsa Windows Server 2012 R2 Configuring Advanced Services Study Guide Exam

Mcsa Windows Server 2012 R2 Configuring Advanced Services Study Guide Exam Mcsa Windows Server 2012 R2 Configuring Advanced Services Study Guide Exam 70 412 MCSA WINDOWS SERVER 2012 R2 CONFIGURING ADVANCED SERVICES STUDY GUIDE EXAM 70 412 PDF - Are you looking for mcsa windows

More information

Some Quick Terms Before we move ahead, we need to touch on a few key terms used throughout the book.

Some Quick Terms Before we move ahead, we need to touch on a few key terms used throughout the book. Getting Started Welcome to the official Apple Pro training course for Motion, Apple Computer s revolutionary real-time-design motion graphics application. This book provides a comprehensive guide to designing

More information

IMC Intelligent Analysis Report v7.1 (E0301P02) Copyright (c) 2015 Hewlett-Packard Development Company, L.P. and its licensors.

IMC Intelligent Analysis Report v7.1 (E0301P02) Copyright (c) 2015 Hewlett-Packard Development Company, L.P. and its licensors. IMC Intelligent Analysis Report v7.1 (E0301P02) Copyright (c) 2015 Hewlett-Packard Development Company, L.P. and its licensors. Table of Contents 1. What's New in this Release 2. Problems Fixed in this

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

COMPUTER COURSE OFFERINGS

COMPUTER COURSE OFFERINGS COMPUTER COURSE OFFERINGS IPAD AND IPHONE... 2 IPAD BASICS... 2 IPHONE BASICS... 2 KEYNOTE PRESENTATION BASICS... 2 MICROSOFT COURSES... 3 INTRODUCTION TO PERSONAL COMPUTERS: USING MICROSOFT WINDOWS 8...

More information

Grande Prairie Regional College

Grande Prairie Regional College Grande Prairie Regional College Department of Office Administration COURSE OUTLINE OA 2280 M2, Microsoft Word 2007 Expert Level (3) (0-0-4) 60 hours Monday Friday 10 11:30 am. A313 Instructor Sharron Barr

More information

Access 2016 Essentials Syllabus

Access 2016 Essentials Syllabus Access 2016 Essentials Syllabus Lesson 1 Creating & Managing Databases 1.1 Introduction Lesson content; What is a database? The course folders; The course player; Screen resolution notes; Prerequisites;

More information

New Perspectives On Microsoft Publisher 2000 Comprehensive

New Perspectives On Microsoft Publisher 2000 Comprehensive New Perspectives On Microsoft Publisher 2000 Comprehensive NEW PERSPECTIVES ON MICROSOFT PUBLISHER 2000 COMPREHENSIVE PDF - Are you looking for new perspectives on microsoft publisher 2000 comprehensive

More information

VMware Infrastructure 3 Primer Update 2 and later for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5

VMware Infrastructure 3 Primer Update 2 and later for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5 Update 2 and later for ESX Server 3.5, ESX Server 3i version 3.5, VirtualCenter 2.5 VMware Infrastructure 3 Primer Revision: 20090313 Item: EN-000021-02 You can find the most up-to-date technical documentation

More information

MYOB Enterprise Solutions System Requirement Guidelines. Wednesday 21 st March 2012 Version 2.6

MYOB Enterprise Solutions System Requirement Guidelines. Wednesday 21 st March 2012 Version 2.6 Wednesday 21 st March 2012 Version 2.6 Contents 1 SYSTEM REQUIREMENTS... 4 1.1 OVERVIEW... 4 1.2 SERVER REQUIREMENTS... 4 1.2.1 SERVER REQUIREMENTS (EXCLUDING TERMINAL SERVER)... 4 1.2.2 WINDOWS TERMINAL

More information

2730 : Building Microsoft Content Management Server 2002 Solutions

2730 : Building Microsoft Content Management Server 2002 Solutions 2730 : Building Microsoft Content Management Server 2002 Solutions Introduction This four-day, instructor-led course provides students with the knowledge and skills to plan, implement, develop, and manage

More information

2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product.

2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. GA-1310 Welcome 2009 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45085373 5 May 2009 WELCOME 3 WELCOME This Welcome document provides

More information

HP UFT Web Add-in Extensibility

HP UFT Web Add-in Extensibility HP UFT Web Add-in Extensibility Software Version: 12.52 Windows operating systems Developer Guide Document Release Date: January 2016 Software Release Date: January 2016 Legal Notices Warranty The only

More information

Micro Focus Relativity DBA. Installation

Micro Focus Relativity DBA. Installation Micro Focus Relativity DBA Installation Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2018. All rights reserved. MICRO FOCUS, the

More information

System Requirements 2008 R2

System Requirements 2008 R2 System Requirements 2008 R2 Below are the basic system requirements for installing and running Virtual Machine Manager (VMM) 2008 R2. More complete and comprehensive information covering additional system

More information

Visual Effects-After Effects

Visual Effects-After Effects Module Presenter s Manual Visual Effects-After Effects OV-599 Effective from: July 2017 Ver. 1.0 Presenter s Manual Aptech Limited Page 1 Amendment Record Version No. Effective Date Change Replaced Pages

More information

Course Syllabus: Getting Started with ibolt V3.x

Course Syllabus: Getting Started with ibolt V3.x Course Syllabus: Getting Started with ibolt V3.x TABLE OF CONTENTS Course Objectives and Goals... 1 General Details... 1 Lesson Outline... 2 Knowledge Prerequisites... 5 Magic Software University Course

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS AUDIO/VIDEO FOR THE WEB WEB 2120 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Revised: Fall 08 NOTE: This course is not designed

More information

Hands On Microsoft Windows Server 2008

Hands On Microsoft Windows Server 2008 Hands On Microsoft Windows Server 2008 Chapter 6 Review Questions Answers Chapter 6 Solutions Review Questions 1. One of the users on your network has called to report that a shared printer on your Windows

More information

Introduction to Programming Nanodegree Syllabus

Introduction to Programming Nanodegree Syllabus Introduction to Programming Nanodegree Syllabus Learn to Code Before You Start Prerequisites: In order to succeed, we recommend having experience using the web, being able to perform a search on Google,

More information

Course Syllabus: Lifting Off into Space-Based Architecture with Magic xpi 4.x

Course Syllabus: Lifting Off into Space-Based Architecture with Magic xpi 4.x Course Syllabus: Lifting Off into Space-Based Architecture with Magic xpi 4.x TABLE OF CONTENTS: 1 COURSE OBJECTIVES AND GOALS... 2 2 GENERAL COURSE DETAILS... 2 3 TECHNICAL MATERIAL... 4 4 LESSONS...

More information

Certified Enterprise Applications Integration Specialist (With Microsoft BizTalk Server) Sample Material

Certified Enterprise Applications Integration Specialist (With Microsoft BizTalk Server) Sample Material Certified Enterprise Applications Integration Specialist (With Microsoft BizTalk Server) Sample Material 1. INTRODUCTION & INSTALLATION 1.1 Introduction BizTalk is a business process management (BPM) server

More information

Trend Micro Core Protection Module 10.6 SP1 System Requirements

Trend Micro Core Protection Module 10.6 SP1 System Requirements Trend Micro Core Protection Module 10.6 System Requirements Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing

More information

Getting Started. About Classroom in a Book

Getting Started. About Classroom in a Book 1 Getting Started Welcome to Adobe GoLive 6.0 the complete solution for Web site design, development, and management for novices and professionals alike. GoLive provides easy-to-use site design tools,

More information

PPC s SMART Practice Aids Prepare for Installing database upgrade to SQL Express 2008 R2

PPC s SMART Practice Aids Prepare for Installing database upgrade to SQL Express 2008 R2 PPC s SMART Practice Aids Prepare for Installing database upgrade to SQL Express 2008 R2 June 2013 Agenda Objectives SMART Practice Aids System Requirements SMART Installation Pre-Requisites Installation

More information

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL

COURSE 10961B: AUTOMATING ADMINISTRATION WITH WINDOWS POWERSHELL ABOUT THIS COURSE Learn how with Windows PowerShell 3.0, you can remotely manage single or multiple Windows-based servers and automate day-to-day management and administration tasks. This five day course

More information

IN THIS CHAPTER,YOU LEARN THE BASICS of databases, including how they

IN THIS CHAPTER,YOU LEARN THE BASICS of databases, including how they 4 Working with Databases IN THIS CHAPTER,YOU LEARN THE BASICS of databases, including how they work, how ColdFusion interfaces with a database, and how to create a ColdFusion datasource. If you ve been

More information

SALESFORCE CERTIFIED PARDOT SPECIALIST

SALESFORCE CERTIFIED PARDOT SPECIALIST Certification Exam Guide SALESFORCE CERTIFIED PARDOT SPECIALIST Winter 19 2018 Salesforce.com, inc. All rights reserved. CONTENTS About the Salesforce Certified Pardot Specialist Credential... 1 Section

More information

CSS Web Site Design Hands On Training By Eric Meyer READ ONLINE

CSS Web Site Design Hands On Training By Eric Meyer READ ONLINE CSS Web Site Design Hands On Training By Eric Meyer READ ONLINE Course Description This intensive, hands-on four-day course teaches programmers The training course provides web designers with the knowledge

More information

Configuring Advanced Windows Server 2012 Services R2 Lab Manual Microsoft Official Academic Course Series

Configuring Advanced Windows Server 2012 Services R2 Lab Manual Microsoft Official Academic Course Series 70 412 Configuring Advanced Windows Server 2012 Services R2 Lab Manual Microsoft Official Academic Course 70 412 CONFIGURING ADVANCED WINDOWS SERVER 2012 SERVICES R2 LAB MANUAL MICROSOFT OFFICIAL ACADEMIC

More information

F-Secure Client Security. Quick Installation Guide

F-Secure Client Security. Quick Installation Guide F-Secure Client Security Quick Installation Guide F-Secure Client Security TOC 3 Contents Chapter 1: Introduction...5 Chapter 2: Installing Client Security...7 System requirements...8 Stand-alone installation...9

More information

Questions and Answers

Questions and Answers AUTODESK IMPRESSION 2 Questions and Answers Contents 1. General Product Information... 2 1.1 What is Autodesk Impression?... 2 1.2 Who uses Autodesk Impression?... 2 1.3 What are the primary benefits of

More information

ProSystem fx Engagement

ProSystem fx Engagement ProSystem fx Engagement Guide November 2008 Copyright 2008 CCH INCORPORATED. A Wolters Kluwer Business. All Rights Reserved. Material in this publication may not be reproduced or transmitted, in any form

More information

Free Downloads Adobe Photoshop CS6 Digital Classroom

Free Downloads Adobe Photoshop CS6 Digital Classroom Free Downloads Adobe Photoshop CS6 Digital Classroom A complete training package on the newest version of Photoshop! The Digital Classroom series combines a full-color book with a full-featured DVD, resulting

More information

Grande Prairie Regional College

Grande Prairie Regional College Grande Prairie Regional College Department of Office Administration COURSE OUTLINE OA 1080 A3, Microsoft Word 2010 Expert Level (3) (0-0-5) 75 hours Monday Tuesday Thursday 11:30 12:50 p.m. Instructor

More information

Installing Lotus Notes on Your Computer Lotus Notes release (Standard and Basic versions)

Installing Lotus Notes on Your Computer Lotus Notes release (Standard and Basic versions) Installing Lotus Notes on Your Computer Lotus Notes release 8.0.1 (Standard and Basic versions) You can install Lotus Notes on your PC just as you would install any other software. You may download the

More information

Getting Started. Citrix Load Manager. Version 1.0. Citrix Systems, Inc.

Getting Started. Citrix Load Manager. Version 1.0. Citrix Systems, Inc. Getting Started Citrix Load Manager Version 1.0 Citrix Systems, Inc. Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious

More information

CorpSystem Workpaper Manager Installation Guide

CorpSystem Workpaper Manager Installation Guide CorpSystem Workpaper Manager Installation Guide August 2011 Copyright 2011 CCH INCORPORATED. A Wolters Kluwer business. All Rights Reserved. Material in this publication may not be reproduced or transmitted,

More information

MYOB Enterprise Solutions software system requirements guidelines. Thursday, 6 May 2010 Version 2.0

MYOB Enterprise Solutions software system requirements guidelines. Thursday, 6 May 2010 Version 2.0 MYOB Enterprise Solutions software system Thursday, 6 May 2010 Version 2.0 Contents 1 System Requirements... 4 1.1 Overview... 4 1.2 Server requirements... 4 1.2.1 Server Requirements (excluding Terminal

More information

Exam Windows Embedded Standard 7. Preparation Kit. Certification Exam Preparation utomation. Not for resale.

Exam Windows Embedded Standard 7. Preparation Kit. Certification Exam Preparation utomation. Not for resale. MCTS i Exam 70-582 Windows Embedded Standard 7 Preparation Kit Certification Exam Preparation utomation Not for resale. Contents at a Glance 1 Product Concepts 2 Building a Base Operating System Image

More information

Professional Commerce Server 2000 By Tim Huckaand Scott Case

Professional Commerce Server 2000 By Tim Huckaand Scott Case Professional Commerce Server 2000 By Tim Huckaand Scott Case Latest ebooks Professional Commerce Server 2000 ibook by Etc - Latest ebooks Professional Commerce Server 2000 ibook by Etc., Scott et al Case,

More information

[PDF] Real World Print Production With Adobe Creative Cloud (Graphic Design & Visual Communication Courses)

[PDF] Real World Print Production With Adobe Creative Cloud (Graphic Design & Visual Communication Courses) [PDF] Real World Print Production With Adobe Creative Cloud (Graphic Design & Visual Communication Courses) Sharpen your print production skills with this definitive resource created specifically for design

More information

Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift

Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift If searching for the book Programming: C ++ Programming

More information

2559 : Introduction to Visual Basic.NET Programming with Microsoft.NET

2559 : Introduction to Visual Basic.NET Programming with Microsoft.NET 2559 : Introduction to Visual Basic.NET Programming with Microsoft.NET Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge

More information

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide

Series 40 6th Edition SDK, Feature Pack 1 Installation Guide F O R U M N O K I A Series 40 6th Edition SDK, Feature Pack 1 Installation Guide Version Final; December 2nd, 2010 Contents 1 Legal Notice...3 2 Series 40 6th Edition SDK, Feature Pack 1...4 3 About Series

More information

Table of contents. Universal Data Exporter ASP DMXzone.com

Table of contents. Universal Data Exporter ASP DMXzone.com Table of contents About Universal Data Exporter ASP... 2 Features in Detail... 3 Before you begin... 9 Installing the extension... 9 The Basics: Exporting an HTML table... 10 Introduction... 10 How to

More information

2012 Course Release Schedule

2012 Course Release Schedule 2012 Course Release Schedule February 2012: Course: CASP Description: Advanced Security Practitioner Certification (CASP) is designed to provide students with an explanation and understanding of conceptualization

More information

DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI Page 1 Page 2 windows server administration fundamentals lesson 2 answers windows server administration

More information

SQL Server Reporting Services

SQL Server Reporting Services SQL Server Reporting Services Presented by: Victoria Katona and Vijay Vasu Arcadia University April 4, 2006 8:30 am 9:30 am April 2-5 Orlando, Florida Session Rules of Etiquette Please turn off your cell

More information

Free Downloads Microsoft Access 2010 Step By Step

Free Downloads Microsoft Access 2010 Step By Step Free Downloads Microsoft Access 2010 Step By Step Experience learning made easy-and quickly teach yourself how to build database solutions with Access 2010. With STEP BY STEP, you set the pace-building

More information

Installation Guide. Tivoli Decision Support 2.0

Installation Guide. Tivoli Decision Support 2.0 Installation Guide Tivoli Decision Support 2.0 Tivoli Decision Support 2.0 Installation Guide (August, 1998) Copyright 1998 by Tivoli Systems, an IBM Company, including this documentation and all software.

More information

CORE SOLUTIONS OF MICROSOFT SHAREPOINT SERVER 2013 EBOOK

CORE SOLUTIONS OF MICROSOFT SHAREPOINT SERVER 2013 EBOOK page 1 / 6 page 2 / 6 core solutions of microsoft pdf The second edition of Core Servlets and JavaServer Pages is now available for free access in PDF. See links below. Readers of the older edition can

More information

Lab Determining Data Storage Capacity

Lab Determining Data Storage Capacity Lab 1.3.2 Determining Data Storage Capacity Objectives Determine the amount of RAM (in MB) installed in a PC. Determine the size of the hard disk drive (in GB) installed in a PC. Determine the used and

More information

CADWorx DraftPro Questions and Answers

CADWorx DraftPro Questions and Answers CADWorx DraftPro Questions and Answers Use CADWorx DraftPro software to improve the quality, efficiency, safety and cost effectiveness of those served by plant design. Today, Intergraph CADWorx & Analysis

More information

Aws Certified Solutions Architect Associate Level

Aws Certified Solutions Architect Associate Level AWS CERTIFIED SOLUTIONS ARCHITECT ASSOCIATE LEVEL PDF - Are you looking for aws certified solutions architect associate level Books? Now, you will be happy that at this time aws certified solutions architect

More information

You are reading an online chapter for Optimizing ColdFusion 5 by Chris

You are reading an online chapter for Optimizing ColdFusion 5 by Chris APPENDIX B 1 2 Optimizing ColdFusion 5 You are reading an online chapter for Optimizing ColdFusion 5 by Chris Cortes (Osborne/McGraw-Hill, 2001). This online chapter is intended to supplement the printed

More information

TEKLYNX LABEL MATRIX

TEKLYNX LABEL MATRIX TEKLYNX LABEL MATRIX V E R S I O N 8 I N S T A L L A T I O N G U I D E Note Installation Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

Automating Administration with Windows PowerShell 2.0

Automating Administration with Windows PowerShell 2.0 Automating Administration with Windows PowerShell 2.0 Course No. 10325 5 Days Instructor-led, Hands-on Introduction This course provides students with the knowledge and skills to utilize Windows PowerShell

More information

Symantec Backup Exec Quick Installation Guide

Symantec Backup Exec Quick Installation Guide Symantec Backup Exec 2010 Quick Installation Guide 20047221 Installing Backup Exec This document includes the following topics: System requirements Before you install About the Backup Exec service account

More information

Resusci Anne Skills Station

Resusci Anne Skills Station MicroSim Frequently Asked Questions 1 Resusci_anne_skills-station_installation-guide_sp7012_UK.indd 1 25/01/08 10:51:33 2 Resusci_anne_skills-station_installation-guide_sp7012_UK.indd 2 25/01/08 10:51:33

More information

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote Acknowledgments p. xxv Introduction p. xxvii Getting Started with Dreamweaver MX 2004 Is It 2004 Already? p. 3 The Internet p. 4 TCP/IP p. 7 Hypertext Transfer Protocol p. 8 Hypertext Markup Language p.

More information