Sie sind auf Seite 1von 83

Introduction to ASP.

NET

Microsoft Corporation
What We Will Cover
 Introduction to Microsoft® .NET
 “Classic” ASP
 Microsoft® ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Session Prerequisites
 This session assumes that you
understand the fundamentals of
 Development on Microsoft® Windows®
 ASP or Microsoft® Visual Basic®
 This is a Level 100 Session
So Why This Presentation?
 ASP.NET offers many enhancements
over classic ASP but…
 With ASP.NET, there’s a lot new to learn
 Solves many ASP issues
 RAD for the Web
Demonstrations
 ASP vs. ASP.NET
 Server controls walk-through
 Validation
 Data controls
 Cookieless sessions
 Web services
 Page caching
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Introduction to .NET
1st Generation
Client Logic Servers
Data, Hosts
Biz Logic
Browsers
OS
Services
Web app developers took Applications largely operating
advantage of these local in a client / server model were
services and used HTML augmented with Web browser
to “project” the UI to many and servers. The industry
types of clients focused on rich OS and local
Microsoft provided COM, IIS, services provided by products
Internet Explorer like SQL Server™.
Introduction to .NET
2nd Generation
Biz Servers
Rich Tier Logic
Client Logic Data, Hosts

“Stateful”
Browsers OS
Services “Stateless” &
“Geo-Scalable”
COM+ Services improve reliability,
scalability and manageability. Internet Separation of data and
Explorer provides DHTML for better business logic provide
interactivity. greater scalability and
Combination of “stateless” Web performance while
protocols with DNS and IP routing have accessing enterprise
enabled mass-scale “geo-scalability” and legacy data.
Introduction to .NET
Web Services: The Next Generation
Applications Become
Other Programmable Web Services Public Web
Services Services
Biz Biz
Logic &
Web Service
Tier Logic Building Block
Smarter
Clients Services

Internal
Standard OS Services
Browsers OS
Services
Smarter Servers
Devices Open Internet Data, Hosts
Communications Protocols
Richer, More Applications Leverage
(HTTP, SMTP, XML, SOAP)
Productive User Globally-Available
Experience Federated Web Services
Introduction to .NET
The .Net Platform
Visual Your Application Your Internal
Studio® .NET and Web Service Services

Orchestration
.NET Enterprise
Servers

Operations
Applications .NET
Using Your Framework
Service .NET Foundation
Windows® Services
CE, 2000, XP, .NET
End-User Internet Protocols
Clients SOAP “blue book”
3rd Party Web Services
HTTP, SMTP, XML
Introduction to .NET
The .NET Framework and Visual Studio .NET

Visual Basic® C++ C# JScript® …

Common Language Specification

Visual Studio .NET


ASP.NET: Web Services Windows
and Web Forms Forms

ADO.NET: Data and XML

Base Class Library

Common Language Runtime


Introduction to .NET
ASP.NET

Visual Basic® C++ C# JScript® …

Common Language Specification

Visual Studio.NET
ASP.NET: Web Services Windows
and Web Forms Forms

ADO.NET: Data and XML

Base Class Library

Common Language Runtime


Agenda
 Introduction to .NET
 ASP today
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
“Classic” ASP
Successes

 Simple procedural programming model


 Access to COM Objects
 ADO
 File system object
 No compiling, just save
 Support for multiple scripting languages
 Mix HTML and code
 VBscript – leverage Visual Basic skills
“Classic” ASP
Challenges

 Code readability
 Coding overhead
 PostBack complexity
 Reuse
 Performance
 DLL locking
 Deployment
 Sessions
 Caching
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
ASP.NET
Architecture

ASPX

.ASPX
ASP.NET
Architecture

Compiled .ASPX
ASP.NET
Architecture

Compiled .ASPX
ASP.NET
Architecture

Compiled .ASPX
ASP.NET
Execution Model
Source Visual Basic C# C++
code
Unmanaged
Compiler Compiler Compiler
Component

Managed Assembly Assembly Assembly


code IL Code IL Code IL Code

Common Language Runtime

JIT Compiler

Native Code

Operating System Services


ASP.NET
Features

 ASPX, ASP – side by side


 Simplified programming model
 Simplified deployment
 Better performance
 Caching
 Security
 Powerful controls
ASP.NET
Features

 Simplified browser support


 Simplified form validation
 Code behind pages
 More powerful data access
 Web services
 Better session management
ASP.NET
Features

 No DLL locking
 No DLL registration
 Simplified configuration
 Pagelets
Demonstration 1
ASP vs. ASP.NET
Data-Driven ASP
Data-Driven ASP.NET
Comparison
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Server Controls
Simplify Common Tasks
 Simplify common tasks
 Forms
 Tables
 Data display
 Calendar
 Ad rotator
 Server-side programming model
 Automatic browser compatibility
 Less code, less complexity
 Extensible
Server Controls
HTML and Server Controls

<div id="MyDiv" runat="server"/>


<asp:TextBox id="txtUserName"
runat="Server"/>
<asp:button type="submit"
OnClick="SubmitBtn_Click"
runat="server"/>

 ID – uniquely identifies control


 Runat – enables server-side processing
 OnClick – identifies server-side event handler
Server Controls
Forms
<script language="C#" runat=server>

void SubmitBtn_Click(Object sender, EventArgs e) {


Response.Write (“Hello” + txtUserName.Text);
}

</script>

 PostBack
 Server-side object automatically populated from
client-side controls
Server Controls
Browser Support

 Targets client on the fly


<asp:textbox ForeColor=“red”/>
 Style
 Font

 Validation
 Client-side
 Server-side
Demonstration 2
Server Controls Walk-Through

Programming Model
Syntax
Server Controls
Validation

 Without code
 Required field
 Within range
 Two fields equal (password)
 Regular expressions
 Validation error messages
 With code, but simplified
 Custom validation
Demonstration 3
Validation
Required Field
Validation Summary
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Data Controls
 Bind to many data sources
 Collections
 Array
 HashTable
 ADO.NET
 DataReader
 DataSet
 XML
Data Controls
ADO.NET

 Connection
 Command
 DataReader
 DataSet
 DataAdapter
 DataView
Data Controls
ADO.NET

DataSet
Database
Authors
Connection Authors

DataAdapter
Select … from Authors
Data Controls
ADO.NET

DataSet
Database
Authors
Connection Publishers

DataAdapter
Publishers
Select … from
Publishers
Data Controls
ADO.NET

DataSet
Authors DataGrid

Repeater
Publishers
DataList

DataView
Data Controls
DataGrid

 Displays data as a table


 Control over
 Alternate item
 Header
 Footer
 Colors, font, borders, etc.
 Paging
 Updateable
 Item as row
Data Controls
Repeater

 List format
 No default output
 More control
 More complexity
 Item as row
 Not updateable
Data Controls
DataList

 Directional rendering
 Good for columns
 Item as cell
 Alternate item
 Updateable
Demonstration 4
Data Controls
ADO.NET
DataGrid
Repeater
DataList
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
ASP.NET Web Applications
 Global ASAX
 Application_Start
 Application_End
 Session_Start
 Session_End
 Session
 Application
ASP.NET Web Applications
web.config
 Site configuration file
 Like an .INI file for your site
 XML format
 Extensible
 Some settings
 Security
 Session
 Localization
 Tracing
 Debugging
ASP.NET Web Applications
Session Variables

 Store state information


 No longer require cookies
 Share between servers

<sessionState
mode=“StateServer“
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user
id=sa;password="
cookieless="false"
timeout="20"
/>
Demonstration 5
Cookieless Sessions
Sessions with cookies
web.config
Sessions without cookies
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Business Objects
 Problems with ASP and DLLs
 DLLs with .NET
Business Objects
Problems with ASP and DLLs

 DLL Locking
 Page hit
 Shutdown Web application
 Shutdown Internet Information Server
 Edit in Visual Interdev
 MTS/COM+
 Shutdown package
 Binary compatibility
 Registry
Business Objects
DLLs with .NET
 Not registered
 Placed in ./bin directory
 Not locked
 Shadow copy
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Web Services
 The Web today
 How Web services work
Web Services
The Web Today

Purchase courseware

Purchased

Designed for people to browse


Web Services
The Web Today

Purchase Courseware
?

Server to server is a problem


Web Services
What Are Web Services?

 Allow applications to communicate


across the Internet
 Platform independent
 Protocol independent
 Synchronous/asynchronous
 Stateful/stateless
 BizTalk®
 ASP.NET
Web Services
Class Courseware
WebMethod
GetPrice
Purchase

.ASMX
Web Services

Testing
Courseware.asmx

Test HTML Page

.ASMX
Web Services

WSDL
Courseware.asmx?WSDL

Service Definition(XML)

Proxy
DLL
.ASMX
Web Services

Register for Course Purchase Courseware

Proxy
DLL
.ASMX
Demonstration 6
Web Services
Web Service Source
Testing
WSDL
Client Proxy Creation
Consuming a Web Service
Agenda
 Introduction to .NET
 “Classic” ASP
 ASP.NET
 Server controls
 Data controls
 ASP.NET Web applications
 Business objects
 Web services
 Additional topics
Additional Topics
 Deployment
 Scalability
 Caching
 Authentication and authorization
 Availability
Additional Topics
Deployment

 Copy
 Components in .\bin
 No registering DLLs
 No locked DLLs
 Apps are isolated
 Each app can have its own version
 Uninstall
 Delete
Additional Topics
Scalability Improvements

 ASP.NET pages are complied


 State shared across machines
 Managed providers
 Disconnected data access
 Caching
Additional Topics
Caching

 Page output caching


<%@ OutputCache Duration="60" VaryByParam="none" %>

 Page data caching


Cache[“MyDataSet”] = SomeDataSet

 Like application variables


 Scavenging
 Expiration
 Dependencies
Additional Topics
Authentication

 Supports basic, digest, cookie, and


Windows authentication, Passport
 Form-based authentication
 Users or roles
 One API for user info
Demonstration 7
Page Caching
Compare Performance
Call To Action
 Download the .NET Framework SDK
 Build a new ASP.NET application, or
migrate from ASP
Session Summary
 ASP.NET offers many enhancements
 Improved session state
 Improved programming model
 Validators
 Caching
 In-place updating of sites
 The list goes on…
For More Information…
 MSDN Web site at
 msdn.microsoft.com
 msdn.microsoft.com/net
 C# Language Reference
 msdn.microsoft.com/library/prelim/csref/vc
oricreference.htm
For More Information…
 .NET Resources/Quickstart Tutorials
 http://www.gotdotnet.com
MSDN
Essential Resources for Developers
Subscription Library, OS, Professional, Enterprise,
Services Universal Delivered via CD-ROM, DVD, Web

Online MSDN Online, MSDN Flash, How-To


Information Resources, Download Center

Training & MSDN Webcasts, MSDN Online


Events Seminars, Tech-Ed, PDC, Developer Days

Print MSDN Magazine


Publications MSDN News

Membership MSDN User Groups


Programs
How-To Resources
Simple, Step-By-Step Procedures
 Embedded development how-to resources
 General how-to resources
 Integration how-to resources
 Jscript® .NET how-to resources
 .NET development how-to resources
 Office development resources
 Security how-to resources
 Visual Basic® .NET how-to resources
 Visual C#™ .NET how-to resources
 Visual Studio® .NET how-to resources
 Web development how-to resources (ASP, IIS, XML)
 Web services how-to resources
 Windows development how-to resources
http://msdn.microsoft.com/howto
MSDN Webcasts
Interactive, Live Online Events

 Interactive, synchronous, live online


events
 Discuss the hottest topics from Microsoft
 Open and free for the general public
 Take place every Tuesday

http://www.microsoft.com/usa/webcasts
MSDN Subscriptions
The way to get Visual Studio .NET
Visual Studio .NET MSDN Subscriptions
Enterprise Architect
• Software and data modeling MSDN Universal
• Enterprise templates $2799 new
• Architectural guidance $2299 renewal/upgrade

Enterprise Developer
• Enterprise lifecycle tools MSDN Enterprise
• Team development support $2199 new
• Core .NET Enterprise $1599 renewal/upgrade

NEW
Servers

Professional
• Tools to build applications MSDN Professional
and XML Web services for $1199 new
Windows and the Web $899 renewal/upgrade
Where Can I Get MSDN?
 Visit MSDN Online at
msdn.microsoft.com
 Register for the MSDN Flash e-mail
newsletter at
msdn.microsoft.com/flash
 Become an MSDN CD subscriber at
msdn.microsoft.com/subscriptions
 MSDN online seminars
msdn.microsoft.com/training/seminars
 Attend more MSDN events
Microsoft Press®
Essential Resources for Developers

Microsoft® Visual Studio® .NET is here!


This is your chance to start building the next big
thing. Develop your .NET skills, increase your
productivity with .NET Books from Microsoft Press.
www.microsoft.com/mspress
Become a Microsoft
Certified Solution Developer
 What is MCSD?
 Premium certification for professionals who design
and develop custom business solutions
 How do I attain MCSD certification?
 It requires passing four exams to prove
competency with Microsoft solution architecture,
desktop applications, distributed application
development, and development tools
 Where do I get more information?
 For more information about certification
requirements, exams, and training options,
visit www.microsoft.com/mcp
Training
Training Resources for Developers
 Introduction to ASP.NET
 Course no. 2063
 Detailed syllabus:
www.microsoft.com/traincert

To locate a training provider for this course, please access


www.microsoft.com/traincert
Microsoft Certified Technical Education Centers
are Microsoft’s premier partners for training services

Das könnte Ihnen auch gefallen