1、 郑州轻工业学院 专科毕业设计(论文) 英文翻译 题目 基于 ASP.NET 的企业网站宣传 学生姓名 马宝勇 专业班级 网络系统管理 10-02 班 学号 621013550221 院(系) 软件学院 指导教师(职称) 康国磊(副教授) 完成时间 2012 年 3 月 25 日 1 英文原文 ASP.NET Overview ASP.NET is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with
2、 a minimum of coding. ASP.NET is part of the .NET Framework, and when coding ASP.NET applications you have access to classes in the .NET Framework. You can code your applications in any language compatible with the common language runtime (CLR), including Microsoft Visual Basic, C#, JScript .NET, an
3、d J#. These languages enable you to develop ASP.NET applications that benefit from the common language runtime, type safety, inheritance, and so on. ASP.NET includes: A page and controls framework The ASP.NET compiler Security infrastructure State-management facilities Application configuration Heal
4、th monitoring and performance features Debugging support An XML Web services framework Extensible hosting environment and application life cycle management An extensible designer environment The ASP.NET page and controls framework is a programming framework that runs on a Web server to dynamically p
5、roduce and render ASP.NET Web pages. ASP.NET Web pages can be requested from any browser or client device, and ASP.NET renders markup (such as HTML) to the requesting browser. ASP.NET Web pages are completely object-oriented. Within ASP.NET Web pages you can work with HTML elements using properties,
6、 methods, and events. The ASP.NET page framework removes the implementation details of the separation of client and server inherent in Web-based applications by presenting a unified model for 2 responding to client events in code that runs at the server. The framework also automatically maintains th
7、e state of a page and the controls on that page during the page processing life cycle. The ASP.NET page and controls framework also enables you to encapsulate common UI functionality in easy-to-use, reusable controls. Controls are written once, can be used in many pages, and are integrated into the
8、ASP.NET Web page that they are placed in during rendering. The ASP.NET page and controls framework also provides features to control the overall look and feel of your Web site via themes and skins. You can define themes and skins and then apply them at a page level or at a control level. All ASP.NET
9、 code is compiled, which enables strong typing, performance optimizations, and early binding, among other benefits. Once the code has been compiled, the common language runtime further compiles ASP.NET code to native code, providing improved performance. ASP.NET includes a compiler that will compile
10、 all your application components including pages and controls into an assembly that the ASP.NET hosting environment can then use to service user requests. In addition to the security features of .NET, ASP.NET provides an advanced security infrastructure for authenticating and authorizing user access
11、 as well as performing other security-related tasks. You can authenticate users using Windows authentication supplied by IIS, or you can manage authentication using your own user database using ASP.NET forms authentication and ASP.NET membership. Additionally, you can manage the authorization to the
12、 capabilities and information of your Web application using Windows groups or your own custom role database using ASP.NET roles. You can easily remove, add to, or replace these schemes depending upon the needs of your application. ASP.NET always runs with a particular Windows identity so you can secure your application using Windows capabilities such as NTFS Access Control Lists (ACLs), database permissions, and so on. For more information on the identity of ASP.NET, ASP.NET provides intrinsic state management functionality that enables you to