Tag Archives: introduction

Training Introduction to Agile Testing – 1 day

Class overview :

Agile software development practices are now so widespread that they are no longer considered ‘extreme’. However, many organisations and agile teams still struggle with how to do successful testing on an agile development project.

Class goals :

On completion of this course you will understand agile projects and how they represent a highly collaborative approach to software development. Through interactive sessions you will have gained practical exposure to the common processes of agile including:

  • Planning Iterations
  • Task Estimation
  • Prioritising tasks by business value
  • Using acceptance tests to drive development

Content of Introduction to Agile Testing

Introduction to Agile Software Development

  • Becoming Agile – Why Agile projects are different
  • A New approach to the project plan
  • The Agile Alliance & ‘Manifesto’
  • Features & characteristics of Agile methods
  • Business imperatives
  • Agile in context – conditions for success
  • Dispelling popular Agile myths
  • Examined: XP and Lean Development
  • Traditional problems, new solutions
  • Key practices

Agile Testing Strategies

  • An agile testing metaphor: hitting a moving target
  • Implications of Agile for testing strategies
  • Aligning the test cycle with the development cycle
  • Automation, automation, automation
  • Test-Driven Development
  • Testing Visibly
  • Defect Management and Triage
  • Exploratory Testing

The Agile Game

  • A fun, interactive session to explore Agile principles

Agile Tools and Techniques – an Overview

  • Test-Driven Development with xUnit
  • Continuous Integration with CruiseControl
  • Acceptance Testing with FIT
Introduction to Agile Testing
Training Introduction to Agile Testing

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training SQL using Oracle / Introduction – 2 days

Class overview :

This Oracle training course is designed for students new to writing SQL queries with Oracle. The SQL learned in this course is standard to all modern databases, but Oracle will be used in class and syntax and functionality specific to Oracle will be pointed out.

Class goals :

– Understand how Oracle works
– Learn to use Oracle to output reports
– Learn to write queries getting data from multiple tables.

Content of Training SQL using Oracle / Introduction

  1. Relational Database Basics
    1. Brief History of SQL
    2. Relational Databases
      1. Tables
      2. Rows
      3. Columns
      4. Relationships
      5. Datatypes
      6. Primary Keys
      7. Foreign Keys
      8. Relational Database Management System
    3. Popular Databases
      1. Commercial Databases
      2. Popular Open Source Databases
      3. Valid Object References
    4. SQL Statements
      1. Database Manipulation Language (DML)
      2. Database Definition Language (DDL)
      3. Database Control Language (DCL)
  2. Simple SELECTs
    1. Introduction to the Northwind Database
    2. Some Basics
      1. Comments
      2. Whitespace and Semi-colons
      3. Case Sensitivity
    3. SELECTing All Columns in All Rows
    4. Exploring the Tables
    5. SELECTing Specific Columns
    6. Sorting Records
      1. Sorting By a Single Column
      2. Sorting By Multiple Columns
      3. Sorting By Column Position
      4. Ascending and Descending Sorts
    7. The WHERE Clause and Operator Symbols
      1. Checking for Equality
      2. Checking for Inequality
      3. Checking for Greater or Less Than
      4. Checking for NULL
      5. WHERE and ORDER BY
    8. Using the WHERE clause to check for equality or inequality
    9. Using the WHERE clause to check for greater or less than
    10. Checking for NULL
    11. Using WHERE and ORDER BY Together
    12. The WHERE Clause and Operator Words
      1. The BETWEEN Operator
      2. The IN Operator
      3. The LIKE Operator
      4. The NOT Operator
    13. More SELECTs with WHERE
    14. Checking Multiple Conditions
      1. AND
      2. OR
      3. Order of Evaluation
    15. Writing SELECTs with Multiple Conditions
  3. Advanced SELECTs
    1. Calculated Fields
      1. Concatenation
      2. Mathematical Calculations
      3. Aliases
    2. Calculating Fields
    3. Aggregate Functions and Grouping
      1. Aggregate Functions
      2. Grouping Data
      3. Selecting Distinct Records
    4. Working with Aggregate Functions
    5. Built-in Data Manipulation Functions
      1. Common Math Functions
      2. Common String Functions
      3. Common Date Functions
    6. Data Manipulation Functions
  4. Subqueries, Joins and Unions
    1. Subqueries
    2. Joins
      1. Table Aliases
      2. Multi-table Joins
    3. Using Joins
    4. Outer Joins
    5. Unions
      1. UNION ALL
      2. UNION Rules
    6. Working with Unions
  5. Conditional Processing with CASE
    1. Working with CASE
  6. (If time allows) Challenge lab
    1. Create your own SQL reports from the Northwind database
SQL using Oracle / Introduction
Training SQL using Oracle / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Perl for Unix / Introduction – 5 days

Class overview :

In this Perl training course, students will learn to program effectively in Perl.

Class goals :

Learn to work with variables, arrays and hashes in Perl
Learn to write flow control statements in Perl
Learn to manipulate files with Perl
Learn to use Perl’s Regular Expressions
Learn to create complex data structures with Perl
Learn to use Perl packages and modules
Learn to work with Perl’s object-oriented features
Learn to write subroutines in Perl

Content of Training Perl for Unix / Introduction

Class Outline

  1. Overview of Perl
    1. What is Perl?
    2. Running Perl Programs
    3. Sample Program
    4. Another Sample Program
    5. Yet Another Example
  2. Perl Variables
    1. Three Data Types
    2. Variable Names and Syntax
    3. Variable Naming
    4. Lists
    5. Scalar and List Contexts
    6. The Repetition Operator
  3. Arrays and Hashes in Perl
    1. Arrays
    2. Array Functions
    3. The foreach Loop
    4. The @ARGV Array
    5. The grep Function
    6. Array Slices
    7. Hashes
    8. Hash Functions
    9. Scalar and List Contexts Revisited
  4. Quoting and Interpolation in Perl
    1. String Literals
    2. Interpolation
    3. Array Substitution and Join
    4. Backslashes and Single Quotes
    5. Quotation Operators
    6. Command Substitution
    7. Here Documents
  5. Perl Operators
    1. Perl Operators
    2. Operators, Functions and Precedence
    3. File Test Operators
    4. Assignment Operator Notations
    5. The Range Operator
  6. Flow Control in Perl
    1. Simple Statements
    2. Simple Statement Modifiers
    3. Compound Statements
    4. The next, last, and redo Statements
    5. The for Loop
    6. The foreach Loop
  7. I/O: Input Operations and File I/O with Perl
    1. Overview of File I/O
    2. The open Function
    3. The Input Operator < >
    4. Default Input Operator
    5. The print Function
    6. Reading Directories
  8. Regular Expressions in Perl
    1. Pattern Matching Overview
    2. The Substitution Operator
    3. Regular Expressions
    4. Special Characters
    5. Quantifiers (*, +, ?, {})
    6. Assertions (^, $, b, B)
  9. Advanced Regular Expressions in Perl
    1. Substrings
    2. Substrings in List Context
    3. RE Special Variables
    4. RE Options
    5. Multi-line REs
    6. Substituting with an Expression
    7. Perl RE Extensions
  10. Subroutines in Perl
    1. Overview of Subroutines
    2. Passing Arguments
    3. Private Variables
    4. Returning Values
  11. References
    1. References
    2. Creating References
    3. Using References
    4. Passing References as Arguments to Subroutines
    5. Anonymous Composers
    6. The Symbol Table
  12. Complex Data Structures in Perl
    1. Two-dimensional Arrays in Perl
    2. Anonymous Arrays and Anonymous Hashes
    3. Arrays of Arrays
    4. Arrays of References
    5. A Hash of Arrays
    6. A Hash of Hashes
    7. And So On…
  13. Perl Packages and Modules
    1. Packages
    2. BEGIN and END Routines
    3. require vs. use
    4. Modules
    5. The bless Function
  14. Introduction to Object-Oriented Programming in Perl
    1. What is Object-Oriented?
    2. Why Use Object-Oriented Programming?
    3. Classes, Objects, and Methods in Perl
    4. Inheritance, the « is-a » Relationship
    5. Containment, the « has-a » Relationship
    6. Overloaded Operators
    7. Destructors
  15. Binary Data Structures in Perl
    1. Variable-Length (Delimited) Fields
    2. Variable vs. Fixed
    3. Handling Binary Data
    4. The pack Function
    5. The unpack Function
    6. The read Function
    7. C Data Structures
  16. Multitasking with Perl
    1. What are Single and Multitasking?
    2. UNIX Multitasking Concepts
    3. Process Creation with fork
    4. Program Loading with exec
    5. File Descriptor Inheritance
    6. How UNIX Opens Files
    7. One-Way Data Flow – Pipes
    8. Example
    9. Final Result – Page Viewing
  17. Sockets Programming in Perl
    1. Clients and Servers
    2. Ports and Services
    3. Berkeley Sockets
    4. Data Structures of the Sockets API
    5. Socket System Calls
    6. Generic Client/Server Models
    7. A Client/ServerExample
    8. A Little Web Server
Perl for Unix / Introduction
Training Perl for Unix / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Google Apps / Introduction – 1 day

Class overview :

This Google Apps training will empower your team to work with the different Apps included in the Google Apps suite for businesses. This course will teach your team how to effectively set up and use Gmail, Google Calendar and Google Docs. After taking this Google Apps course your team will be able to leverage the different collaboration tools available in Google Apps which are geared towards making your communication process more effective and productive.

Class goals :

Learn the differences and advantages of web-based Gmail vs. traditional client based email systems.
Learn the concept of threaded conversation in Gmail.
Learn the features available in Gmail to effectively organize your inbox.
Learn to compose an email message in Gmail.
Learn how to tweak settings in Gmail to personalize your account.
Learn how to setup vacation responder in Gmail.
Learn how to use collaboration tools with Gmail (e.g. Presence, Audio and Video Chat).
Learn how to configure your Gmail account with third party email clients (e.g. MS Outlook).
Learn how to install different add-on tools to enhance your Gmail account.
Learn how to use Google Calendar.
Learn how to schedule a meeting in Google Calendar and invite others.
Learn how to share your Google Calendar with your colleagues.
Learn how to add multiple calendars and personalize settings in Google Calendar.
Learn the benefits of using Google Docs.
Learn how to create and share text documents, presentations and spreadsheets using Google Docs.
Learn how to create and share forms using Google Docs.
Learn how to manage and organize your Google Docs.
Learn best practices for using Google Apps.

Content of Training Google Apps / Introduction

Class Outline

  1. Gmail for Enterprise
    1. Navigation and User Interface
      1. What’s so different about Gmail?
      2. Understanding threaded conversation
    2. Organizing your inbox in Gmail, Where are my folders?
      1. Creating and using Labels in Gmail
      2. Archiving messages
      3. Using the star function
      4. Using search to find your email
      5. Setting up filters to auto-organize your inbox
    3. Composing new email in Gmail
      1. Composing messages in a new window
      2. Formatting your message and using spell check
      3. Attaching a file
      4. Saving an email as a draft
    4. Tweaking Gmail Settings
      1. Adding your signature
      2. Setting up vacation responder
      3. Adding a face to your email address
      4. Changing your Gmail password
    5. Advanced Collaboration Features
      1. Understanding the concept of presence
      2. Using chat for collaboration
      3. Setting up audio/video collaboration
      4. Managing your contacts in Gmail
    6. Advanced Settings in Gmail
      1. Using Gmail from external email client (e.g. MS Outlook)
      2. Leveraging Google Labs to enhance your account
      3. Using security features in Gmail
  2. Google Calendar
    1. Understanding navigation and user Interface
    2. How to schedule an appointment in Google Calendar
    3. How to create a task in Google Calendar
    4. Inviting others to join your meeting
    5. Sharing your Google Calendar with co-workers
    6. Using search to find events in your Google Calendar
    7. Tweaking Google Calendar default settings
  3. Google Docs
    1. Benefits of using Google Docs
    2. Working with Google Docs
      1. Creating and sharing a text document
      2. Creating and sharing a presentation
      3. Creating and sharing a spreadsheet
      4. Creating and sharing a form
      5. Using drawing tools as a white board
      6. Use templates to create your Google Doc
    3. Managing your Google Docs
      1. Creating Folders
      2. Uploading existing documents to your Google Docs
      3. Renaming and deleting your Google Docs
      4. Searching and finding your Google Docs
    4. Best practices and tips for using Google Apps
Google Apps / Introduction
Training Google Apps / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Google AdWords / Introduction – 1 day

Class overview :

This Google AdWords course is designed to introduce you to the world of search engine marketing (SEM) and familiarize you with the Google AdWords tool. This AdWords Basic course will teach you how to leverage Google AdWords to best serve your online marketing needs. The unique feature of this Google AdWords training is that it includes hands-on interactive exercises empowering students to productively use Google AdWords on their own website right away.

Class goals :

Learn fundamentals of search engine marketing.
Learn step-by-step process for running online marketing campaigns in Google AdWords.
Learn the key features and capabilities of Google AdWords.
Learn to navigate through Google AdWords user interface.
Learn how to set up accounts, Ad campaigns, and Ad groups in Google AdWords.
Learn key strategies and tools to build targeted keyword lists.
Learn how to write Ads within Google AdWords.
Learn how to track Ad performance within Google AdWords.
Learn how to integrate Google Analytics with your Google AdWords account.
Learn how to leverage Google Analytics features for optimizing your marketing initiative.

Content of Training Google AdWords / Introduction

Class Outline

  1. Introduction to Online Marketing
    1. Online Marketing Trends, A Historical Overview
    2. Understanding Search Engine Marketing (SEM)
      1. Advantages of SEM Over Other Marketing Methods
      2. Snap-Shot of SEM Industry
  2. Key Terminologies in SEM
    1. Understanding SEM Lingo
      1. Search Network
      2. Content Network
      3. PPC
      4. CPC
      5. Creative
      6. Landing Page
      7. Impressions
      8. Click through Rate
      9. Ad Rank
      10. Quality Score
  3. Getting Started With Google AdWords
    1. Introduction to Google AdWords
      1. Scope of Google AdWords
      2. Difference Between Google AdWords and Google AdSense
    2. Navigating Google AdWords
      1. Introduction to Old and New AdWords Interface
  4. Google AdWords Setup
    1. Understanding the Account Setup Process
    2. Understanding Account Structure
      1. Campaigns
      2. Ad Groups
      3. Keywords
    3. Understanding Account Setting Options
    4. Understanding AdWords Billing
  5. Building Keywords Lists
    1. Keyword Building Strategy
      1. Creating Different Buckets of Keywords
    2. Exploring Keyword Generation Tools
    3. Understanding Keyword Match Type
  6. Ad Campaigns in Google AdWords
    1. Creating Ad Campaigns
    2. Creating Ad Groups
    3. Managing Ad campaigns and Ad groups
  7. Creating Text Ads in Google AdWords
    1. Key Strategies for Effective Ad Writing
    2. Specifications for Ads Within AdWords
  8. Tracking Ad Performance
    1. Interpreting key Metrics Within Google AdWords
    2. Testing Ad Performance
    3. Generating Reports Within Google AdWords Report Center
  9. Google Analytics and AdWords
    1. Linking AdWords With Google Analytics
    2. Leveraging AdWords Reports in Google Analytics
      1. AdWords Campaign Report
      2. Keyword Positions Report
      3. Keywords Report
    3. Filtering AdWords Related Data
    4. Leveraging Goals and Funnels to Measure Conversion
Google AdWords / Introduction
Training Google AdWords / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Google Analytics / Introduction – 2 days

Class overview :

This Google Analytics class is designed to provide you with in-depth knowledge about various features available in Google Analytics tool and how to leverage them to best serve your business needs. The course begins with introductory chapters to provide a strong foundation to students.

Class goals :

Learn the fundamentals of web metrics and web analytics.
Learn what web analytics can do for your business.
Learn common web analytics methodologies suitable for different types of websites.
Learn how Google Analytics works.
Learn the key features and capabilities of Google Analytics.
Learn to set up a Google Analytics accounts and profiles.
Learn access management techniques for your Google Analytics accounts and profiles.
Lean how to generate reports in Google Analytics (visitors reports, traffic sources reports, content reports, goals report.)
Learn to analyze default reports in Google Analytics to interpret web metrics data.
Learn to create and apply filters in Google Analytics.
Learn best practices for setting filters in Google Analytics.
Learn to create goals and funnels in Google Analytics.
Learn to interpret reports for analyzing goals and funnels in Google Analytics.

Content of Training Google Analytics / Introduction

Class Outline

  1. Overview and Background of Web Analytics
    1. Introduction to Web Analytics
    2. Why Learn Web Analytics: Analytics vs. Reporting
    3. Fundamentals of Web Analytics
  2. Introduction to Google Analytics
    1. Basics of Google Analytics
    2. Getting Started with Google Analytics
    3. Access Management
  3. Reports in Google Analytics
    1. Introduction to Reports in Google Analytics
    2. Understanding the Report Layout
    3. Exporting Your Data from Google Analytics
    4. Digging into Reports
    5. Visitors Report Demystified
    6. Traffic Sources Report Demystified
  4. Understanding Filters in Google Analytics
    1. Introduction to Filters
    2. Overview of Different Types of Filters
  5. Goals in Google Analytics
    1. Introduction to Goals
    2. Configuring Goals
    3. Analyzing Goals Using Standard Reports
  6. Funnels in Google Analytics
    1. Introduction to Funnels
    2. Building a Funnel in Google Analytics
    3. Funnel Virtualization Report
  7. Integrating Google Analytics with Google AdWords
    1. Tracking Online Marketing Campaigns through Google Analytics
Google Analytics / Introduction
Training Google Analytics / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Visual Studio 2010 / Introduction – 5 days

Class overview :

This Microsoft ASP.NET training class provides web developers with the knowledge and skills to develop Web applications by using Microsoft Visual Studio 2010.

This ASP.NET class is intended for Web developers who know HTML and have at least some knowledge of a scripting language such as JScript/JavaScript or VBScript.

Class goals :

Explore ASP.NET Web applications in Microsoft Visual Studio 2010.
Learn to create Web applications by using Microsoft Visual Studio 2010 and Microsoft .NET based languages.
Learn to create a Microsoft ASP.NET Web Form.
Learn to add functionality to a Microsoft ASP.NET Web Form.
Learn to implement master pages and user controls.
Learn to validate user input.
Learn to debug Microsoft ASP.NET Web applications.
Learn to manage data in an ASP.NET 3.5 Web application.
Learn to manage data access tasks by using LINQ.
Learn to manage data by using ASP.NET Dynamic Data.
Learn to create a Microsoft ASP.NET AJAX application.
Learn to consume and Windows Communication Foundation (WCF) services.
Learn to manage state in Web applications.
Learn to configure and deploy a Microsoft ASP.NET Web application.
Learn to secure a Microsoft ASP.NET Web application.
Learn to implement new technologies supported by Visual Studio 2010 for Web development.

Content of Training Visual Studio 2010 / Introduction

Class Outline

  1. Exploring Microsoft ASP.NET Web Applications in Microsoft Visual Studio 2010
    1. Introduction to the .NET Framework
    2. Overview of ASP.NET
    3. Overview of the Lab Application
    4. Lab : There are no labs for this module
  2. Creating Web Applications by Using Microsoft Visual Studio 2010 and Microsoft .NET Based Languages
    1. Choosing a Programming Language
    2. Overview of Visual Studio 2010
    3. Creating a Simple Web Application
    4. Lab : Creating Web Applications by Using Microsoft Visual Studio 2010 and Microsoft .NET Based Languages
      1. Exercise 1: Creating an ASP.NET Web Site
      2. Exercise 2: Adding and Configuring Server Controls in Web Forms
      3. Exercise 3: Building and Deploying an ASP.NET Web Application
  3. Creating a Microsoft ASP.NET Web Form
    1. Creating Web Forms
    2. Adding and Configuring Server Controls in a Web Form
    3. Lab : Creating a Microsoft ASP.NET Web Form
      1. Exercise 1: Creating a Web Form
      2. Exercise 2: Adding and Configuring Server Controls in a Web Form
  4. Adding Functionality to a Microsoft ASP.NET Web Form
    1. Working with Code-Behind Files
    2. Handling Server Control Events
    3. Creating Classes and Components by Using Visual Studio 2010
    4. Handling Page Events
    5. Lab : Adding Functionality to a Microsoft ASP.NET Web Form
      1. Exercise 1: Implementing Code in a Web Application
      2. Exercise 2: Creating Event Procedures
      3. Exercise 3: Creating an Entity Component
      4. Exercise 4: Handling Page and Control Events
  5. Implementing Master Pages and User Controls
    1. Creating Master Pages
    2. Adding User Controls to an ASP.NET Web Form
    3. Lab : Implementing Master Pages and User Controls
      1. Exercise 1: Adding and Applying a Master Page
      2. Exercise 2: Converting Web Forms to Content Pages and User Controls
  6. Validating User Input
    1. Overview of User Input Validation
    2. ASP.NET Validation Controls
    3. Validating Web Forms
    4. Lab : Validating User Input
      1. Exercise 1: Adding Validation Controls
      2. Exercise 2: Configuring Validation Controls
      3. Exercise 3: Adding Server-Side Validation
  7. Troubleshooting Microsoft ASP.NET Web Applications
    1. Debugging in ASP.NET
    2. Tracing in ASP.NET
    3. Lab : Debugging Microsoft ASP.NET Web Applications
      1. Exercise 1: Debugging a Web Application
      2. Exercise 2: Tracing a Web Application
  8. Managing Data in an Microsoft ASP.NET 4.0 Web Application
    1. Overview of ADO.NET
    2. Connecting to a Database
    3. Managing Data
    4. Lab : Managing Data in an ASP.NET 4.0 Web Application
      1. Exercise 1: Connecting to a Data Source
      2. Exercise 2: Binding a Server Control to a Data Source
      3. Exercise 3: Modifying a Data Source
  9. Managing Data Access Tasks by Using LINQ
    1. Overview of LINQ
    2. Managing XML Data by Using LINQ to XML
    3. Managing SQL Data by Using LINQ to SQL and LINQ to Entities
    4. Lab : Managing Data Access Tasks by Using LINQ
      1. Exercise 1: Loading Data by Using the XmlDataSource Control
      2. Exercise 2: Displaying Data by Using LINQ to XML
      3. Exercise 3: Saving Data by Using LINQ to Entities
  10. Managing Data by Using Microsoft ASP.NET Dynamic Data
    1. Overview of ASP.NET Dynamic Data
    2. Applying ASP.NET Dynamic Data
    3. Customizing ASP.NET Dynamic Data Applications
    4. Lab : Managing Data by Using ASP.NET Dynamic Data
      1. Exercise 1: Adding Dynamic Data to an Existing Web Site
      2. Exercise 2: Registering LINQ to Entities by Using Dynamic Data
      3. Exercise 3: Map, Clean and Test Solution
  11. Creating a Microsoft ASP.NET Ajax-enabled Web Forms Application
    1. Introduction to Ajax
    2. Creating an ASP.NET Ajax Application by Using the Ajax Features for ASP.NET
    3. Extending an ASP.NET Web Forms Application by Using the Ajax Control Toolkit
    4. Lab : Creating a Microsoft ASP.NET Ajax-Enabled Web Forms Application
      1. Exercise 1: Creating a Modal About Box
      2. Exercise 2: Customizing Dynamic Data Field Templates with Ajax Server Controls
      3. Exercise 3: Adding the Country Import Progress Indicator
  12. Consuming Microsoft Windows Communication Foundation Services
    1. Overview of Windows Communication Foundation Services
    2. Calling Windows Communication Foundation Services
    3. Working with WCF Data Services
    4. Lab : Consuming Windows Communication Foundation Services
      1. Exercise 1: Creating a WCF Service Reference Proxy
      2. Exercise 2: Calling a WCF Service Method from a Web Form
      3. Exercise 3: Implementing WCF Data Services
  13. Managing State in Web Applications
    1. State Management
    2. ASP.NET Profiles
    3. ASP.NET Caching
    4. Lab : Managing State in Web Applications
      1. Exercise 1: Examining the View State
      2. Exercise 2: Caching Countries
      3. Exercise 3: Displaying Visitors Counter on Default Page
  14. Configuring and Deploying a Microsoft ASP.NET Web Application
    1. Configuring an ASP.NET Web Application
    2. Deploying an ASP.NET Web Application
    3. Lab : Configuring and Deploying a Microsoft ASP.NET Web Application
      1. Configuring the List View Page Size and Enabling the Save Countries Button
      2. Configuring the Visitor Counter
      3. Deploying the Web Application
  15. Securing a Microsoft ASP.NET Web Application
    1. Overview of Web Application Security
    2. Declaratively Configuring Authentication and Authorization
    3. Working Programmatically with Authentication and Authorization
    4. Lab : Securing a Microsoft ASP.NET Web Application
      1. Exercise 1: Enabling Forms Authentication
      2. Exercise 2: Implementing Authorization
      3. Exercise 3: Protecting Configuration File
  16. Implementing Advanced Technologies Supported by Microsoft Visual Studio 2010 for Web Development
    1. Working with the ASP.NET MVC 2 Framework
    2. Working with Silverlight 4
    3. Lab : Implementing Advanced Technologies Supported by Microsoft Visual Studio 2010 for Web Development
      1. Exercise: Implementing a Silverlight Application
Visual Studio 2010 / Introduction
Training Visual Studio 2010 / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Active Server Pages / Introduction – 3 days

Class overview :

In this ASP training course, students will learn to build full-featured, database-driven Web sites. This introductory course for new programmers lays out the basics of server-side Web programming with an introduction to classic programming structures and good programming practices. Students will apply these programming skills to the development of a fully functional data-driven website with ASP written in VBScript.

Class goals :

Learn how ASP works
Learn the basic syntax of ASP
Learn to create dynamic interactive pages with ASP
Learn to work with VBScript control structures
Learn to use VBScript built-in functions
Learn to work with ASP’s built-in objects
Learn to validate forms with ASP
Learn to write functions and subroutines in ASP
Learn to work with ASP Session, Application, and Cookie objects
Learn to connect to a database with ASP
Learn to send email with ASP

Content of Training Active Server Pages / Introduction

Class Outline

  1. Active Server Pages: A Web Server-Side Technology
    1. Client-side vs. Server-side Web Technologies
    2. The Web’s Client-Server Relationship
    3. Which Web Servers Support Active Server Pages?
  2. Writing ASP Pages
    1. ASP Code in an HTML Context
    2. ASP Code is « Language Neutral »
    3. VBScript in ASP
    4. ASP Scriptlets
    5. VBScript Strings
    6. An Abbreviation for Response.Write
    7. Developing ASPs
    8. ASP Directives, Statements, Expressions and Comments
    9. VBScript Flexibility and Good Programming Practices
  3. Processing Data from Online Forms
    1. The FORM Tag and its Attributes
    2. ASP Objects
    3. The Request and Response Objects
    4. Scalar Variables in ASP
    5. Customizing a Page for the Visitor
  4. Conditional Constructs – IF Statements
    1. Comparison Operators in VBScript
    2. Adding an Else Clause
    3. Implementing an IF…ELSE…END IF Conditional
    4. Adding One or More ELSEIF Clauses
    5. The Logical AND and OR
    6. Combining the Form and its Processing Code in One ASP File
  5. Working with Cookies
    1. Setting and Retrieving a Cookie
    2. Cookie Properties
    3. Expiring a Cookie
  6. Maintaining State with the Session and Application Objects
    1. The Session Object
      1. Storing and Retrieving Values in the Session Object
      2. Session Properties and Methods
    2. The Application Object
  7. Working with Components
    1. Instantiating Component Objects
    2. Sending Email with CDONTS
  8. Writing to a Text File
    1. Writing to a Tab-Delimited Text File
  9. Loop Structures in ASP
    1. For…Next Loops
    2. Populating Select Lists
    3. Collections in ASP
    4. For Each…Next Loops and Collections
  10. ASP-to-Database Integration with ADO
    1. Database Commands with SQL
    2. The ADO Object Model
    3. Retrieving a Record from the Database with ASP
    4. The Connection Object’s Execute Method
    5. Building an Interface for Updating Client Records
  11. VBScript Subroutines and Functions
    1. Subroutines
    2. Functions
  12. Drilling Down and the Query String
    1. Building the Query String into a Link
    2. Generating Drill Down Links Dynamically
    3. Building an Interface for Deleting a Record
Active Server Pages / Introduction
Training Active Server Pages / Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Crystal Reports 2008 Level 1 – 2 days

Class overview :

Organisations use reporting tools to access data sources and generate customised reports. Crystal Reports 2008 enhances report building and report processing techniques with a slew of features that add value to your presentation. In this course, you will create a basic report by connecting to a database and modifying its presentation.

Class goals :

After completing this course, students should be able to:

  • Explore the Crystal Reports interface
  • Create a basic report and modify it
  • Use formulas for filtering data
  • Build a parameterized report
  • Group report data
  • Enhance a report
  • Create a report using data sourced from an Excel database
  • Distribute data

Content of Crystal Reports 2008 Level 1

Lesson 1: Exploring the Crystal Reports 2008 Interface

Lesson 2: Working with Reports

Lesson 3: Using Formulas in Reports

Lesson 4: Building Parameterized Reports

Lesson 5: Grouping Report Data

Lesson 6: Enhancing a Report

Lesson 7: Creating a Report from Excel Data

Lesson 8: Distributing Data

  • Appendix A: Up and Configuring Data Sources
  • Appendix B: Using Report Processing Techniques
  • Appendix C: Using Functions in Formulas
Crystal Reports 2008 Level 1
Training Crystal Reports 2008 Level 1

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …

Training Crystal Reports Version 11 Introduction – 2 days

Class overview :

Crystal Reports 11 Level 1 is the first course in the Crystal Reports 11 series. In this course, you will build basic list and group reports that work with almost any database.

Class goals :

After completing this course, students should be able to:

  • Create a list report by using data from an existing database
  • Locate and present data in a specified order
  • Create groups to summarize report data
  • Build formulas to add non-database data to a report and display data differently
  • Format reports
  • Enhance reports by adding and modifying elements in a report
  • Create single data series charts
  • Distribute report data to other users

Content of Crystal Reports Version 11 Introduction

Creating a Report

  • Set Default Report Settings
  • Specify Fields for a New Report
  • Preview the Report
  • Modify Field Display
  • Add a Report Title
  • Position Fields
  • Add Fields from Additional Tables

Displaying Specific Report Data

  • Find Data
  • Sort Data
  • Filter Data by Single Criterion

Grouping Report Data

  • Insert a Group
  • Add Summaries
  • Format Summary Information
  • Change Group Options
  • Add an Additional Group
  • Filter by Group
  • Create a Top N Sort Group

Building Formulas

  • Write a Formula
  • Create a Formula
  • Edit a Formula
  • Combine Fields by Formula
  • Delete a Formula
  • Filter Data by Multiple Criteria
  • Modify a Filter Using an OR Operator
  • Create a Parameter Field
  • Account for Null Fields in a Formula

Formatting Reports

  • Remove White Space
  • Insert Page Header/Footer Data
  • Add Borders, Boxes, and Lines
  • Change Field Background Color
  • Change the Margins

Enhancing Reports

  • Add a Watermark
  • Insert Objects Using Object Linking and Embedding
  • Modify Formatting Based on Data Value
  • Suppress Report Sections
  • Insert Hyperlinks
  • Hide Blank Report Sections

Creating and Modifying Pie Charts

  • Create a Pie Chart with a Drill-down
  • Modify Chart Text
  • Format a Chart
  • Present a Chart by Group

Distributing Data

  • Export to PDF
  • Export to Microsoft Excel File
  • Export to an Microsoft Access Database File
  • Create a Report Definition
  • Create Mailing Labels
Crystal Reports Version 11 Introduction
Training Crystal Reports Version 11 Introduction

Onze voordelen :

  • Type of training: Inter-company, intra-company and individual
  • 100% flexible & personalised training : You choose the place, the dates and the training program
  • Offer request : Response within 24 hours
  • 50% discount for SME’s from Brussels-Capital Region
  • Free parking, lunch & drinks
  • Free use of our Digital Competence Centre: Manuals, courses, exercises, …