ASP.NET 技术外文翻译资料

 2022-12-16 20:13:26

ASP.NET Technique

McDonald, Zipuzita the Advanced ASP.NET 3.5 Programming (2nd Edition)

1. Building ASP.NET Pages

ASP.NET and the .NET Framework

ASP.NET is part of Microsofts overall .NET framework, which contains a vast set of programming classes designed to satisfy any conceivable programming need. In the following two sections, you learn how ASP.NET fits within the .NET framework, and you learn about the languages you can use in your ASP.NET pages.

The .NET Framework Class Library

Imagine that you are Microsoft. Imagine that you have to support multiple programming languages—such as Visual Basic, JScript, and C . A great deal of the functionality of these programming languages overlaps. For example, for each language, you would have to include methods for accessing the file system, working with databases, and manipulating strings.

Furthermore, these languages contain similar programming constructs. Every language, for example, can represent loops and conditionals. Even though the syntax of a conditional written in Visual Basic differs from the syntax of a conditional written in C , the programming function is the same.

Finally, most programming languages have similar variable data types. In most languages, you have some means of representing strings and integers, for example. The maximum and minimum size of an integer might depend on the language, but the basic data type is the same.

Maintaining all this functionality for multiple languages requires a lot of work. Why keep reinventing the wheel? Wouldnt it be easier to create all this functionality once and use it for every language?

The .NET Framework Class Library does exactly that. It consists of a vast set of classes designed to satisfy any conceivable programming need. For example, the .NET framework contains classes for handling database access, working with the file system, manipulating text, and generating graphics. In addition, it contains more specialized classes for performing tasks such as working with regular expressions and handling network protocols.

The .NET framework, furthermore, contains classes that represent all the basic variable data types such as strings, integers, bytes, characters, and arrays.

Most importantly, for purposes of this book, the .NET Framework Class Library contains classes for building ASP.NET pages. You need to understand, however, that you can access any of the .NET framework classes when you are building your ASP.NET pages.

Understanding Namespaces

As you might guess, the .NET framework is huge. It contains thousands of classes (over 3,400). Fortunately, the classes are not simply jumbled together. The classes of the .NET framework are organized into a hierarchy of namespaces.

ASP Classic Note

In previous versions of Active Server Pages, you had access to only five standard classes (the Response, Request, Session, Application, and Server objects). ASP.NET, in contrast, provides you with access to over 3,400 classes!

A namespace is a logical grouping of classes. For example, all the classes that relate to working with the file system are gathered together into the System.IO namespace.

The namespaces are organized into a hierarchy (a logical tree). At the root of the tree is the System namespace. This namespace contains all the classes for the base data types, such as strings and arrays. It also contains classes for working with random numbers and dates and times.

You can uniquely identify any class in the .NET framework by using the full namespace of the class. For example, to uniquely refer to the class that represents a file system file (the File class), you would use the following:

System.IO.File

System.IO refers to the namespace, and File refers to the particular class.

NOTE

You can view all the namespaces of the standard classes in the .NET Framework Class Library by viewing the Reference Documentation for the .NET Framework.

Standard ASP.NET Namespaces

The classes contained in a select number of namespaces are available in your ASP.NET pages by default. (You must explicitly import other namespaces.) These default namespaces contain classes that you use most often in your ASP.NET applications:

System— Contains all the base data types and other useful classes such as those related to generating random numbers and working with dates and times.

System.Collections— Contains classes for working with standard collection types such as hash tables, and array lists.

System.Collections.Specialized—Contains classes that represent specialized collections such as linked lists and string collections.

System.Configuration— Contains classes for working with configuration files (Web.config files).

System.Text— Contains classes for encoding, decoding, and manipulating the contents of strings.

System.Text.RegularExpressions—Contains classes for performing regular e

剩余内容已隐藏,支付完成后下载完整资料


ASP.NET 技术

麦克唐纳兹普兹塔 著

ASP.NET 3.5高级程序设计(第2版)

1.构建 ASP.NET 页面

ASP.NET 和ASP.NET结构

ASP.NET是Microsoft整体.NET框架的一部分,它包含大量编程类,旨在满足任何可能的编程需求。在以下两节中,您将了解ASP.NET如何适应.NET框架,并了解可在ASP.NET页面中使用的语言。

.NET类库

想象一下,你是微软,你必须支持多种编程语言 - 例如Visual Basic,JScript和C 。这些编程语言的大量功能重叠。例如,对于每种语言,您必须包括访问文件系统,使用数据库和操作字符串的方法。

此外,这些语言包含类似的编程结构。例如,每种语言都可以表示循环和条件。即使用Visual Basic编写的条件语法与用C 编写的条件语法不同,编程功能也是一样的。

最后,大多数编程语言都有类似的可变数据类型。例如,在大多数语言中,您有一些表示字符串和整数的方法。整数的最大和最小大小可能取决于语言,但基本数据类型是相同的。

维护多种语言的所有功能需要大量的工作。创建所有这些功能并将它用于每种语言会不会更容易?

.NET Framework类库就是这样做的。它包含大量的类,旨在满足任何可能的编程需求。例如,.NET框架包含用于处理数据库访问,使用文件系统,操作文本和生成图形的类。此外,它还包含更多用于执行任务的专用类,例如使用正则表达式和处理网络协议。

此外,.NET框架包含表示所有基本变量数据类型的类,如字符串,整数,字节,字符和数组。

理解命名空间

正如您可能猜到的,.NET框架非常庞大。它包含数千个类(超过3,400个)。幸运的是,这些课程并不简单。.NET框架的类被组织成命名空间的层次结构。

ASP Classic Note

在以前版本的Active Server Pages中,您只能访问五个标准类(响应,请求,会话,应用程序和服务器对象)。相比之下,ASP.NET为您提供了超过3,400个类的访问权限!

命名空间是类的逻辑分组。例如,与使用文件系统相关的所有类都聚集到System.IO命名空间中。

命名空间被组织成层次结构(逻辑树)。树的根是System命名空间。此命名空间包含基本数据类型的所有类,例如字符串和数组。它还包含用于处理随机数和日期和时间的类。

您可以使用类的完整命名空间唯一标识.NET框架中的任何类。例如,要唯一地引用表示文件系统文件(File类)的类,您将使用以下内容:

System.IO.文件

System.IO指命名空间 ,而文件指定特定的类。

提示

你能够浏览.NET Framework所有的标准类的命名空间。通过.NET Framework 的参考文档可以浏览类库。

标准的 ASP.NET 命名空间

默认情况下,ASP.NET页面中提供了包含在选定数量的命名空间中的类。 (您必须显式导入其他名称空间。)这些默认名称空间包含您在ASP.NET应用程序中最常使用的类:

System 命名空间- 包含所有的基本数据类型和其他有用的类,例如:那些关于产生随机数字和日期的类。

System.Collections命名空间- 包含的类是标准的集合类,例如:哈希表,数组列表。

System.Collections.Specialized 命名空间- 包含特殊的集合类,例如:连接列表和字符串集合。

System.Configuration 命名空间- 包括Web.config files类。

System.Text命名空间-包含编码,解码和操作字符串内容的类。

System.Text.RegularExpressions命名空间- 包含的是匹配正则表达式和替代操作类。

System.Web 命名空间-工作在万维网方面包含的是浏览器请求和服务器响应的类。

System.Web.Caching 命名空间- 包含页面缓冲内容和自定义缓冲操作的类。

System.Web.Security命名空间- 包含执行验证和授权,例如:窗体和密码验证的类。

System.Web.SessionState命名空间- 包含执行保存状态的类。

System.Web.UI命名空间- 包含构建 ASP.NET 页面的用户接口的类。 System.Web.UI.HTMLControls命名空间- 包含 HTML 控件的类。

System.Web.UI.WebControls命名空间- 包含Web控件的类。

.NET Framework -可用的语言

你将会为以 Visual Basic作为你的编程语言来完成你的ASP.NET页写程序编写。它是 ASP.NET页面的默认语言。虽然你在这当中一直用 Visual Basic, 但是,你也需要了解用其它的支持公共语言库的语言创建ASP.NET页面。除此之外,这包括C#,JScript.NET和C 。

提示

除微软之外的公司产生的几十个其他的语言已经能够和.NET framework兼容。这些其他语言包括Python,SmallTalk,Eiffel和COBOL。这意味着,如果您真的想要,可以使用COBOL编写ASP.NET页面。

无论用于开发ASP.NET页面的语言如何,都需要了解ASP.NET页面在执行之前是否已编译。这意味着ASP.NET页面需要非常快速地执行。

第一次请求ASP.NET页面时,页面将编译为.NET类,生成的类文件将保存在服务器上名为Temporary ASP.NET Files的特殊目录下。对于每个ASP.NET页面,Temporary ASP.NET Files目录中都会显示相应的类文件。每当您将来请求相同的ASP.NET页面时,都会执行相应的类文件。

编译ASP.NET页面时,它不会直接编译为机器代码。相反,它被编译成一种称为Microsoft中间语言(MSIL)的中级语言。所有与.NET兼容的语言都编译成这种中间语言。

在浏览器实际请求之前,ASP.NET页面不会编译为本机机器代码。此时,Temporary ASP.NET Files目录中包含的类文件是使用.NET框架即时(JIT)编译器编译并执行的。

整个过程的神奇之处在于它会在后台自动发生。您所要做的就是使用ASP.NET页面的源代码创建一个文本文件,.NET框架会处理将其转换为编译代码的所有艰苦工作。

典型ASP提示

那么VBScript呢?在ASP.NET之前,VBScript是开发Active Server Pages的最流行的语言。

ASP.NET不支持VBScript,这是个好消息。 Visual Basic是VBScript的超集,这意味着Visual Basic具有VBScript的所有功能以及更多功能。因此,使用Visual Basic可以获得更丰富的函数和语句。

此外,与VBScript不同,Visual Basic是一种编译语言。这意味着如果您使用Visual Basic重写使用VBScript编写的相同代码,则可以获得更好的性能。

如果您以前只使用过VBScript而不是Visual Basic,请不要担心。由于VBScript与Visual Basic密切相关,因此您可以轻松地在两种语言之间进行转换。

提示

在.NET framework中,微软包括一个名叫 IL Disassembler的有趣的工具。在临时的ASP.NET文件目录中你能使用这个工具查看没有装配的ASP.NET 类的代码。它列出了类的所有方法和属性使你能够浏览中间代码。

介绍 ASP.NET 控件

ASP.NET控件为你的Web应用程序提供动态和交互的用户接口。这些控件能够使你的网站的使用者看见与之交互的内容。举例来说,你能使用控件建立HTML窗体元素交互式日历,而且可以滚动标题广告。

ASP.NET 控件和HTML内容共存。典型地,你用通常的HTML创建你的网页的静态区域和用 ASP.NET 控件创建网页的动态区域。

了解 ASP.NET 控件是怎么工作的?最好的方法是看一个简单的Web应用窗体页面。

添加ASP.NET页面的代码

第二个难点就是ASP.NET页面的代码,他是确切的页面的程序代码,在你添加的程序用户处理控件也页面事件。

如果一个使用者单击HTML窗体中的Button按钮,举例来说,那个按钮就会响应一个事件 (单击事件) 。显然你想添加代码响应这个事件到页面中。举例来说,当某人单击Button按钮控件的时候,你可以保存窗体数据到一个文件或者数据库。

控件不是唯一的能相应事件的事物。当它被请求的时候一个ASP.NET页面每次都能够响应几个事件。举例来说,每当你请求一个页面,页面的初始化事件就会被触发。每当初始化事件发生的时候,你能够添加代码到页面中来执行。

2. 用Web服务器控件创建窗体

构建灵活窗体

你用几个基本Web控件来代替标准的HTML窗体元素,例如radio buttons、text boxes, and list boxes.你能够用这些控件为你的Web应用程序在你的ASP.NET页面中创建用户界面。下面的部分为这些Web控件提供了详细的提纲和程序源代码。

控制页面浏览

在下列的部分中你学会如何控制一个用户从一个ASP.NET页面转到另一个页面首先,你学会怎么把一个HTML窗体链接到另一个页面来获取信息。下一步,你学会用Redirect()方法自动让一个用户浏览一个新的页面。最后,你学会用超级链接控件怎么把页面连在一起。

对控件应用格式

在下列的部分中,你学会该如何创建更有吸引力的Web窗体。首先,你浏览一下针对所有Web控件格式属性他们是基本控件类的格式属性。然后,你学会在Web控件上应用样式表风格。

3. 用验证控件做页面验证

使用客户端验证

传统地,当增加验证到他们的页面中时,他们会面临一个严峻的选择。你可以添加窗体页面验证规则到你的服务器端代码,或者是添加验证规则到你的客户端代码。

写验证代码到客户端代码中的优势是能够及时反馈到你的用户。举例来说,一个使用者忽略在一个要求检验的字段中输入一个值,你能够及时的显示一个错误信息而不需要返回到服务器端解决。

人们喜欢客户端的验证。它看起来很棒而且产生的效果比较好。然而,问题是它不与所有的浏览器兼容。不是所有的浏览器支持JavaScript,不同版本的浏览器版本不同的支持 JavaScript,所以客户端验证没有保障。

由于这个原因,许多开发者在过去决定添加自定义验证到服务器端。因为服务器端代码能够和任何浏览器协同工作。就这样的做法更有安全的保障。

幸运地, 这些验证控件会自动地产生客户端代码和服务器端代码。 如果一个浏览器有能力支持JavaScript ,客户端的验证脚本将会自动返回到浏览器。如果一个浏览器不支持 JavaScript,那个验证规则会自动在服务器端代码中执行。

然而你需要注意的是,客户端的验证仅仅能够工作在IE4.0或更高的版本。尤其,客户端脚本不可能在任意本本的浏览器中运行。

控制字段: RequiredFieldValidator 控件

你用这个控件来检查在一个Web窗体中是否为空,通常你会和 TextBox 控件一起使用这个控件。 然而,这个控件也可以用在其他的输入型控件,例如:RadioButtonList.控件。

验证表达式: RegularExpressionValidator 控件

你能使用 RegularExpressionValidator 控件来验证输入的值是否和定义的正则表达式相匹配。 例如:你能使用这控件来检查一个用户是否输入一个合法的电子邮件地址,电话号码,用户名或密码。

比较值: CompareValidator 控件

这个CompareValidator 控件用于比较一个输入的数据和另外一个值是否相同。另外一个值可能是固定值,例如

剩余内容已隐藏,支付完成后下载完整资料


资料编号:[20003],资料为PDF文档或Word文档,PDF文档可免费转换为Word

您需要先支付 30元 才能查看全部内容!立即支付

课题毕业论文、外文翻译、任务书、文献综述、开题报告、程序设计、图纸设计等资料可联系客服协助查找。