6368 - Programming with the Microsoft .NET Framework Using Microsoft Visual Studio 2008 |
|
|---|---|
| Course Code: | 6368 |
| Course Duration: | 5 days |
| Course Price: | 3600.00 |
| Availability: | |
This five-day instructor-led (Level 200) course provides students with an introduction to developing n-tier applications for the Microsoft .NET 3.5 environment using Microsoft Visual Studio 2008 SP1. This course and the 6367: Introduction to Object Oriented Programming using Visual Studio 2008 course will prepare the student for the 646x series of Technology Specialist courses and exams.
After completing this course, students will be able to:
• Manage a software development process
• Create classes in Visual Studio 2008
• Add data validation to ASP.NET and Windows Form applications
• Debug and profile applications
• Monitor and log .NET Framework applications
• Test .NET Framework applications
• Use the new language features in VB.NET and C# that support LINQ
• Use LINQ to Datasets, LINQ to Objects, LINQ to XML, LINQ to Entities, and LINQ to SQL
• Implement security in .NET applications
• Create and send an SMTP mail message
• Create and set network credentials
• Configure .NET Framework applications
• Deploy a .NET Framework application
• Build a shared folder implementation
• Create a Windows Presentation Foundation application
Module 1: Software Design and Development in Visual Studio 2008 Lessons Lab : Software Design and Development After completing this module, students will be able to: Module 2: Object-Oriented Programming with Microsoft Visual Studio 2008 Lessons Lab : Creating Classes in Visual Studio 2008 After completing this module, students will be able to: Module 3: Data Validation Lessons Lab : Data Validation After completing this module, students will be able to: Module 4: Debugging and Profiling .NET Applications Lessons Lab : Code Tracing After completing this module, students will be able to: Module 5: Monitoring and Logging .NET Framework Applications Lessons Lab : Monitoring and Logging .NET Framework Applications After completing this module, students will be able to: Module 6: Testing Microsoft .NET Framework Applications Lessons Lab : Software Testing After completing this module, students will be able to: Module 7: Introduction to LINQ Lessons Lab : Using New Language Features Lab : Simple LINQ-to-Object Queries Lab : Using LINQ to Datasets and LINQ to Objects After completing this module, students will be able to: Module 8: Data Access with LINQ Lessons Lab : Data Access with LINQ After completing this module, students will be able to: Module 9: Implementing Security in .NET Applications Lessons Lab : Security in the .NET Framework After completing this module, students will be able to: Module 10: Network Programming Lessons Lab : Network Programming After completing this module, students will be able to: Module 11: Creating Distributed Applications Lessons Lab : Creating a Windows Communication Foundation Service After completing this module, students will be able to: Module 12: Configuring .NET Framework Applications Lessons Lab : Application Configuration After completing this module, students will be able to: Module 13: Deploying .NET Framework Applications Lessons Lab : Deploying a .NET Framework Application After completing this module, students will be able to: Module 14: Windows Presentation Foundation Applications Lessons Lab : Building Windows Presentation Foundation Applications After completing this module, students will be able to:
This module helps students to design and develop software using Visual Studio 2008.
• Introduction to Software Design and Development
• Introduction to Software Development Frameworks and Methodologies
• Introduction to the Microsoft .NET Framework Applications
• N-Tier Application Development
• Exercise 1: Managing a Software Development Process
• Exercise 2: Recommend an Architecture
• Exercise 3: Discussion
• Describe software design and development
• Describe Microsoft .NET Framework Applications
• Describe N-Tier Development
This module helps students to design and develop software using Visual Studio 2008.
• Object-Oriented Programming Concepts
• Defining a Class
• Creating a Class Instance
• Introduction to Inheritance
• Defining and Implementing Interfaces
• Creating and Using Delegates and Events
• Generics
• Exercise 1: Create a Customer and Person Class Using the Class Designer
• Exercise 2: Create a BasicProduct and FullProduct in the Code Editor Window
• Exercise 3: Extend the DAL to use the a class to pass data
• Describe object-oriented programming concepts
• Define a Class
• Describe how to create a Class Instance
• Describe how to implement inheritance
• Describe how to define and implement an interfaces
• Describe how to create and use delegates and events
This module introduces data validation and explains how to validate Windows Forms and ASP.NET applications.
• Introduction to Data Validation?
• Validating Windows Forms Applications
• Validating ASP.NET Applications
• Exercise 1: Adding data validation to the ASP.NET application
• Exercise 2: Adding data validation to the sales interface
• Describe the general concepts around data validation
• Describe the technologies and techniques to be used to validate Windows Forms applications
• Describe the technologies and techniques to be used when validating ASP.NET Applications
This module helps students to debug and profile applications using Visual Studio 2008.
• Code Tracing and Debugging
• Application Profiling
• Exercise 1: Add Tracing to a Windows Forms Application
• Add trace and debug statements to applications to use for debugging
• Use the common language runtime (CLR) Profiler to optimize applications
• Use the Performance Explorer to analyze performance bottlenecks in applications
This module introduces the concept of instrumentation, as well as one of the instrumentation methods.
• Introduction to Instrumentation
• Event Logs
• Exercise: Writing to a Custom Event Log
• Discuss the basics of instrumentation
• Name the various technologies that are available for instrumentation
• Explain what the event logs are
• Use the event logs to instrument your application
This module helps students to implement software testing using Visual Studio 2008.
• Introduction to Software Testing
• Using Visual Studio 2008 Testing Tools
• Exercise 1: Using the object test bench
• Exercise 2: Creating and running a unit test
• Describe the basic concepts behind software testing
• Use the tools available in VS 2008 to implement software testing
This module introduces new language features and LINQ concepts
• What Is New in VB.NET and C#
• Introduction to LINQ
• LINQ Data Providers
• Exercise 1: Define variables using local type inference
• Exercise 2: Define objects using the new object initializers
• Exercise 3: Define an anonymous type
• Exercise 4: Create an extension method for a string
• Exercise 5: Use a Lambda expression
• Exercise 1: Extract a subset of objects from a collection
• Exercise 2: Order the objects according to a specific field
• Exercise 1: Filter the rows of a dataset according to a specific customer code
• Describe some of the new language features in C# 3.0 and VB.NET 9.0
• Describe what LINQ is
• Describe the basic architecture of LINQ
• Describe the various LINQ constructs
• Write a basic LINQ query
• List the various LINQ Data Providers that Microsoft provides
• Use the LINQ to Objects provider
• Use the LINQ to Datasets provider
This module introduces new language features and LINQ concepts
• LINQ to XML
• LINQ to Entities
• LINQ to SQL
• Exercise 1: Replace a XSLT solution with LINQ to XML
• Exercise 2: Build a Data Access Layer around a new Entity Framework model of the AdventureWorksLT database
• Exercise 3: Build a tool to update Product information in the AdventureWorks database
• Describe LINQ to XML
• Use LINQ to XML to create new XML trees
• Use LINQ to XML to query XML trees
• Describe the Entity Framework
• Describe LINQ to Entities
• Create an Entity Framework Model
• Use the Entity Framework and LINQ to Entities to query a database
• Use the Entity Framework and LINQ to Entities to modify a database
• Describe LINQ to SQL
• Create a LINQ to SQL Model
• Use LINQ to SQL to query a database
• Use LINQ to SQL to modify a database
This module explains important security concepts and how to apply them in .Microsoft NET Framework applications.
• Security Overview
• Implementing Code Access Security
• Implementing Role-Based Security
• Using Cryptography Services
• Exercise 1: Use Code Access Security to lock down file permissions
• Exercise 2: Use role-based security to implement security requirements
• Exercise 3: Encrypting data
• Describe security in the .NET Framework
• Implement code access security
• Implement role-based security
• Use the cryptographic services in the .NET Framework
This module explains how to extend our applications onto the network to access resources and send email.
• Introduction to Network Programming
• Setting Credentials
• Sending Mail
• Exercise 1: Use Code Access Security to Lock Down File Permissions
• Exercise 2: Sending Email on Receipt of an Order
• Explain the basics of network programming
• Create and send an SMTP mail message
• Create and set network credentials
This module introduces the concept of distributed applications and shows you how to create and consume XML Web services by using the Microsoft .NET Framework and Microsoft Visual Studio 2008. It also covers the key features of Windows Communication Foundation (WCF) and explains how to build WCF services and clients.
• Introduction to Distributed Applications
• Creating and Consuming XML Webservices
• Building Windows Communication Foundation Services and Clients
• Exercise 1: Expose the DAL by Means of Web Services
• Exercise 2: Adding Windows Communication Foundation to the Solution
• Describe the options for creating distributed .NET Framework applications and the key features of WCF
• Create and consume XML Web services
• Build WCF services and clients
This module helps students to configure applications using Visual Studio 2008.
• Introduction to Configuring Applications
• Using .NET Configuration Files
• Exercise 1: Set the connectionstring in the web.config File
• Exercise 2: Reading an Application Setting from a Configuration File
• Describe.NET configuration files
• Name the most common configuration files
• Explain how the various configuration files interact
• Configure applications using .NET configuration files
This module introduces many of the features and options that Visual Studio 2008 and the Microsoft .NET Framework provide to help you build, test, and deploy applications.
•Introduction to Assemblies
• Overview of MSBuild
• Deploying .NET Framework Applications by Using ClickOnce
• Deploying .NET Framework Applications by Using Windows Installer
• Exercise 1: Publish the MiddleTierWS Web Service and Secure It
• Exercise 2: Create a Windows Installer Package for the SalesInterface Application
• Exercise 3: Deploy the SalesInterface Application Using Click-Once Deployment Technologies
• Describe assemblies and explain features of assemblies that relate to deployment
• Explain how to use MSBuild to build an application
• Deploy applications by using ClickOnce
• Deploy applications by using Windows Installer
This module introduces the concepts of using the Windows Presentation Foundation (WPF) applications to extend the range and flexibility of the applications that can be developed using the .NET Framework 3.5 and Visual Studio 2008.
• Introduction to Windows Presentation Foundation
• Introduction to XAML
• Programming Windows Presentation Foundation Applications
• Exercise 1: Creating a Windows Presentation Foundation Application
• Discuss the basic concepts behind WPF applications
• Explain the basic concepts behind XAML
• Create a simple WPF application
Delegates attending this course are planning to use the .NET Framework for future business application development . This course is intended for developers who wish to expand their understanding of application development in the .NET Framework. It provides an initial foundation in .NET that can be built upon with the more advanced .NET training. Programmers attending this course should ensure that they are familiar with the Visual Studio IDE.
Object-oriented programming and the .NET Framework are the basic building blocks that all professional developers need to acquire before moving on to the more advanced courses and TS Certification.
Before attending this course, students must have:
• An understanding of problem-solving techniques that apply to software development
• A basic understanding of Web, Macro and Windows scripting techniques and some experience writing scripts
• A general understanding of the purpose, function, and features of the .NET Framework
• Experience using Visual Studio 2008
• Experience in object oriented design and development

