ASP.NET Introduction

ASP.NET is the latest version of Microsoft's Active Server Pages technology (ASP).

What you should already know

Before you continue you should have a basic understanding of the following:

1.WWW, HTML and the basics of building Web pages

2.Scripting languages like JavaScript or VBScript

3.The basics of server side scripting

What is ASP?

ASP is a server side scripting technology that enables scripts (embedded in web pages) to be executed by an Internet server.

  • ASP is a Microsoft Technology
  • ASP stands for Active Server Pages
  • ASP is a program that runs inside IIS
  • IIS stands for Internet Information Services
  • IIS comes as a free component with Windows 2000
  • IIS is also a part of the Windows NT 4.0 Option Pack
  • The Option Pack can be downloaded from Microsoft
  • PWS is a smaller - but fully functional - version of IIS
  • PWS can be found on your Windows 95/98 CD

What is an ASP File?

  • An ASP file is just the same as an HTML file
  • An ASP file can contain text, HTML, XML, and scripts
  • Scripts in an ASP file are executed on the server
  • An ASP file has the file extension ".asp"

How Does it Work?

  • When a browser requests an HTML file, the server returns the file
  • When a browser requests an ASP file, IIS passes the request to the ASP engine on the server
  • The ASP engine reads the file, line by line, and executes the scripts in the file
  • Finally, the ASP file is returned to the browser as plain HTML

Before you study ASP .NET, it would help to have a basic understanding of Microsoft's ASP technology.

What is ASP+?

ASP+ is the same as ASP.NET.

ASP+ is just an early name used by Microsoft when they developed ASP.NET.


What is ASP.NET?

ASP 3.0 is the latest version of ASP, but there will never be an ASP 4.0 version.

ASP.NET is the next generation ASP, but it's not an upgraded version of ASP. ASP.NET is an entirely new paradigm for server-side ASP scripting.

ASP.NET is a part of the .NET Framework. Microsoft spent three years rewriting ASP.NET from the ground up, and ASP.NET is not fully backward//向后兼容 compatible with ASP 3.0.


 

.NET Framework

The .NET Framework is the infrastructure//基础结构 for the Microsoft .NET platform. 

The .NET Framework is an environment for building, deploying, and running Web applications and Web Services.

The .NET Framework contains a common language runtime//公共语言运行时 and common class libraries//基础类库 - like ADO.NET, ASP.NET and Windows Forms//窗体- to provide advanced standard services that can be integrated into//集成 a variety of computer systems.

The .NET Framework provides a feature-rich application environment多样化应用环境, simplified development and easy integration//集成 between a number of different development languages.

The .NET Framework is language neutral.//中立的, Currently it supports C++, C#, Visual Basic, and JScript (Microsoft's version of JavaScript).

Microsoft's Visual Studio.NET is a common development environment //公共开发环境for the .NET Framework.

posted on 2007-01-15 13:09  改变热爱  阅读(217)  评论(0)    收藏  举报

导航