2310
Shared by: xiaopangnv
-
Stats
- views:
- 1
- posted:
- 10/18/2012
- language:
- Latin
- pages:
- 4
Document Sample


data into a Web application.
Developing Microsoft ASP.NET Web
Applications Using Visual Studio .NET Store application and session data by using a
Course 2310 - Five days – Instructor Led variety of methods.
Configure and deploy an ASP.NET Web
Introduction application.
This five-day, instructor-led course will teach Secure an ASP.NET Web application by using
Microsoft® Visual Basic® programmers and a variety of technologies.
beginning Web developers the fundamentals of
Web applicationsite implementation by using Prerequisites
Microsoft ASP.NET and Microsoft Visual Basic Before attending this course, students must
.NET. This course focuses on using the Microsoft have the ability to create HTML or DHTML
Visual Studio® .NET environment and the including:
Microsoft .NET platform to create an ASP.NET Tables
Web application that delivers dynamic content to Images
the Web. Forms
Audience Programming experience using Visual Basic
This course is intended for beginning Web .NET, including:
developers who have knowledge of the Hypertext Declaring variables
Markup Language (HTML) or dynamic HTML Using loops
(DHTML), along with some knowledge of a Using conditional statements
scripting language, such as Visual Basic Scripting Students can satisfy the prerequisites for this
Edition or Microsoft JScript®. This course is also course by completing
appropriate for Visual Basic 6.0 developers Course 1912—Introduction to Web
wanting to learn ASP.NET. Development Technologies
Course 2559—Introduction to Visual Basic
At Course Completion .NET Programming with Microsoft .NET
After completing this course, students will be able Or
to: Course 2373—Programming with Microsoft
Explain the Microsoft .NET Framework and Visual Basic .NET programming.
ASP.NET
Create a component in Visual Basic .NET. Course Outline
Create an ASP.NET Web Application project by Module 1: Overview of the Microsoft .NET
using Visual Studio .NET. Framework
Add server controls to an ASP.NET page. This module introduces the conceptual
Create and populate ASP.NET Web Forms. framework of the.NET Framework and
Add functionality to server controls that are on an ASP.NET.
an ASP.NET Web Form. Lessons
Use the Trace and Debug objects of Visual Studio Introduction to the .NET Framework
.NET. Overview of ASP.NET
Use validation controls to validate user input. Overview of the Lab Application
Create a user control. There is no lab for this module
Access data by using the built-in data access tools After completing this module, students will be
that are in Visual Studio .NET. able to:
Use Microsoft ADO.NET to access data in an Explain the advantages of using the .NET
ASP.NET Web application. Framework.
Accomplish complex data access tasks from an Understand the key functionality and purpose
ASP.NET Web application. of using ASP.NET when developing Web
Access Extensible Markup Language (XML) data applications.
and read it into a DataSet. Understand the basic functionality of the Web
Call a XML Web service from an ASP.NET Web application that you will build in the labs
application and incorporate the returned throughout the course.
26/F Antel 2000 Corporate Centre, 121 Valero Street, Salcedo Village, Makati City 1227 Philippines Tel/fax (632) 887 1718
http://MyIT-training.com
Module 2: Using Microsoft Visual Studio .NET Examples will be show in Visual Studio .NET
This module explains how to create new projects, and C#.
and how to use the primary features that are in Lessons
Visual Studio .NET. Using Code-Behind Pages
Lessons Adding Event Procedures to Server Controls
Overview of Visual Studio .NET Using Page Events
Creating an ASP.NET Web Application Project Lab 5: Adding Functionality to a Web
Lab 2: Using Microsoft Visual Studio .NET Application
Creating an ASP.NET Web Application Project Create a Page_Load Event Procedure
Using Visual Studio .NET Create a Click Event Procedure
After completing this module, students will be able After completing this module, students will be
to: able to:
Navigate the Visual Studio .NET IDE. Use code-behind pages in an ASP.NET Web
Create, build, and view an ASP.NET Web application.
application. Create event procedures for Web server
Module 3: Using Microsoft .NET-Based controls.
Languages Use Page events in an ASP.NET Web
This module will introduce the various languages application.
that support .NET. This module will focus on Module 6: Tracing in Microsoft ASP.NET
Visual Basic .NET and C#. Students will use Web Applications
Visual Studio .NET to create a class project and This module explains how to use the Trace
write code in either Visual Basic .NET or C#. feature and the Debug Object in Microsoft
Lessons Visual Studio .NET. Students will learn about
Overview of the .NET Languages the two tracing techniques in ASP.NET: page-
Comparison of the .NET Languages level tracing and application-level tracing.
Creating a Component Using Visual Basic .NET Students will also learn how use the debugger
Lab 3: Building a Visual Basic .NET Component to create breakpoints, set watch variables, and
Create a new project in Visual Studio .NET for a step between pages and components in a
Visual Basic class Web application.
After completing this module, students will be able Lessons
to: Understanding Tracing
Identify the languages that support ASP.NET. Remote Debugging
Choose an appropriate development language for Debugging
their needs. Using trace statements
Create a component by using Visual Basic .NET. Tracing into a component
Module 4: Creating a Microsoft ASP.NET Web After completing this module, students will be
Form able to:
This module explains how to create and display an Use the Trace object to view runtime
ASP.NET Web Form. information about an Microsoft ASP.NET Web
Lessons application.
Creating Web Forms Debug web applications remotely.
Using Server Controls Module 7: Validating User Input
Lab 4: Creating a Microsoft ASP.NET Web Form This module explains how to use the client-
Creating the default.aspx Web Form side and server-side validation controls to
Creating the life.aspx Web Form screen data.
After completing this module, students will be able Lessons
to: Overview of Uuser Input Validation
Add a Web Form to an ASP.NET Web Application Using Validation Controls
project. Page Validation
Use the Visual Studio .NET toolbox to add server Lab 7: Validating User Input
controls to a Web Form. Using RequiredFieldValidator controls
Module 5: Adding Code to a Microsoft Using the ValidationSummary control
ASP.NET Web Form Using the CompareValidator control
This module explains how to add event Using the RegularExpressionValidator control
procedures to an ASP.NET Web application and After completing this module, students will be
server controls on an ASP.NET Web Form. able to:
26/F Antel 2000 Corporate Centre, 121 Valero Street, Salcedo Village, Makati City 1227 Philippines Tel/fax (632) 887 1718
http://MyIT-training.com
Identify when input validation is appropriate in Create secure connections to a Microsoft SQL
TM
Web Forms. Server database by using the
Use input validation controls to verify user input on SqlConnection and SqlDataAdapter objects.
a Web Form. Use DataSet objects to support the local data
Verify that all validation controls on a page are storage and manipulation requirements of
valid. Web Forms.
Store multiple tables of data in a DataSet
Module 8: Creating User Controls object, and then display that data in DataGrid
This module explains user controls and how to controls.
create them. Programmatically read data from a SQL
Lessons Server database by using a SqlDataReader
Adding User Controls to an ASP.NET Page object.
Creating User Controls Module 11: Calling Stored Procedures with
Lab 8: Creating User Controls Microsoft ADO.NET
Creating a user control This module covers the more advanced and
Using the user control complicated features of ADO.NET.
After completing this module, students will be able Lessons
to: Overview of Stored Procedures
Add a user control to an ASP.NET Web Form. Calling Stored Procedures
Create a user control. Lab 11: Advanced Data Access with Microsoft
Module 9: Accessing Relational Data Using ADO.NET
Microsoft Visual Studio .NET Calling Stored Procedures with Microsoft
This module explains a conceptual overview of the ADO.NET
objects in ADO.NET After completing this module, students will be
Lessons able to:
Overview of ADO.NET Explain what a stored procedure is, along with
Creating a Connection to the Database the reasons for using stored procedures when
Displaying a DataSet in a List-Bound Control accessing a database.
Lab 9: Accessing Data Using Microsoft Visual Call stored procedures.
Studio .NET Module 12: Reading and Writing XML Data
Connecting to a database This module explains the methods that can be
Paging and selection in a DataGrid control used for reading data from XML files.
After completing this module, students will be able Lessons
to: Overview of XML Architecture In ASP.NET
Describe ADO.NET. XML and the DataSet Object
Create a connection to a database by using Working with XML Data
ADO.NET Using the XML Web Server Control
Display data in a Web Form. Lab 12: Reading XML Data
Module 10: Accessing Data with Microsoft Reading a list from an XML File
ADO.NET Reading, transforming, and displaying XML
This module explains how to manually add data Nested data
access tools to a Web application. After completing this module, students will be
Lessons able to:
Introduction to Using ADO.NET Describe XML architecture in ASP.NET.
Connecting to a Database Read and write XML data into a DataSet.
Accessing data with DataSets Identify how to store, retrieve, and transform
Using Multiple Tables XML data by using XMLDataDocument and
Accessing Data with DataReaders XslTransform objects.
Lab 10: Accessing SQL Server Data with Use the XML Web server control to display,
ADO.NET load, and save XML data.
Using a SqlDataReader Module 13: Consuming and Creating XML
Viewing data from the database Web Services
After completing this module, students will be able This module explains the steps that are
to: necessary to access a Web service from an
Describe the ADO.NET object model that is used ASP.NET page and then incorporate that data
for accessing data. into the Web application.
26/F Antel 2000 Corporate Centre, 121 Valero Street, Salcedo Village, Makati City 1227 Philippines Tel/fax (632) 887 1718
http://MyIT-training.com
Lessons Using the Page Output Cache
Overview of Using XML Web Services Partial page caching
Calling a Web Service Using HTTP Using dynamic properties
Using a Proxy to Call an XML Web Service Deploying a site
Creating an XML Web Service After completing this module, students will be
Lab 13: Consuming and Creating a XML Web able to:
Service Use the Cache object to store information.
Create an XML Web service Use ASP.NET output caching to store Web
Create an XML Web service method pages and Web page fragments.
Consume an XML Web service method Configure an ASP.NET Web application by
After completing this module, students will be able using the Machine.config and Web.config files.
to: Deploy an ASP.NET Web application.
Describe the purpose and process behind calling Module 16: Securing a Microsoft ASP.NET
an XML Web service from a Web Form. Web Application
Call an XML Web service directly from a browser This module explains how to secure a Web
by using Hypertext Transfer Protocol (HTTP). application by using a variety of technologies.
Create a Web reference proxy for an XML Web Lessons
service WebMethod and call the method from a Web Application Security Overview
Web From. Working with Windows-Based Authentication
Use the templates in Visual Studio .NET to create Working with Forms-Based Authentication
an XML Web service. Overview of Microsoft Passport Authentication
Module 14: Managing State Lab 16: Securing a Microsoft ASP.NET Web
This module explains several methods of storing Application
application and session data, for both short- and Securing Web sites using Windows-based
long-term storage. authentication
Lessons Securing Web sites using Forms-based
State management authentication
Session and Application Variables Registering new users
Cookies and Cookieless Sessions Permitting users to sign-out
Lab 14: Storing Application and Session Data After completing this module, students will be
Using session variables able to:
Using cookies Describe the ASP.NET and Internet
Using application variables Information Services (IIS) authentication
Storing session variables in a database methods.
After completing this module, students will be able Use Microsoft Windows®-based
to: authentication to secure ASP.NET Web
Describe state management and the different applications.
types of options that are available to manage state Use Forms-based authentication to secure
in an ASP.NET Web application. ASP.NET Web applications.
Use session and application variables to manage Use Microsoft Passport to secure ASP.NET
state in ASP.NET Web applications. Web applications.
Use cookie and cookieless sessions to manage
state in ASP.NET Web applications.
Module 15: Configuring, Optimizing, and
Deploying a Microsoft ASP.NET Web
Application
This module explains how to configure and deploy
an ASP.NET Web application.
Lessons
Using the Cache Object
Using ASP.NET Output Caching
Configuring an ASP.NET Web Application
Deploying an ASP.NET Web Application
Lab 15: Configuring, Optimizing, and Deploying a
Microsoft ASP.NET Application
Using the Cache object
26/F Antel 2000 Corporate Centre, 121 Valero Street, Salcedo Village, Makati City 1227 Philippines Tel/fax (632) 887 1718
http://MyIT-training.com
Get documents about "