外文文献—从经典ASP到ASP.NET

附录Ⅰ英文文献翻译
Moving from Classic ASP to ASP.NET ABSTRACT
ASP.NET is Microsoft new offering for Web application development, innovation within ASP.NET have resulted in significant industry popularity for this product. Consequently there is an increased need for ASP.NET education. The Web Application Development is a third year undergraduate course. To meet the demands of both industry and students, we have changed the focus of this course from Classic ASP to ASP.NET. This paper reports this move. The significant features of ASP.NET and the motivations for this move are discussed. The process, the problems encountered, and some helpful online learning resources are described.
论我国经济的三元结构Key words: Web Application Development, Classic ASP, ASP.NET, Move, VB.NET
1. INTRODUCTION
危朝安
ASP.NET is not just a new version of ASP. It provides innovation for moving Windows applications to Web applications. Web services and the .NET framework have made the vision of the Web as the next generation computing platform a reality. With server controls, Web forms and “code-behind”, we can de
velop a Web application by using a complete object-oriented programming (OOP) model. This increases the popularity of ASP.NET in industry. The industry project is the final course of the Bachelor of Computing Systems (BCS) degree at UNITEC, in which students undertake a real-world project. We have observed a rapid growth of ASP.NET related industry projects in our school.
The Web Application Development (WAD) paper is a third year undergraduate course. It was originally offered using ASP 2.0 and ColdFusion. To meet the demands from both industry and students, we have changed the course content to cover ASP.NET, Visual Studio.NET (VS.NET) and ColdFusion. This change commenced with the first semester of 2003.
This paper will examine the features of ASP.NET and explain why these are unique. The motivations for moving to ASP.NET are discussed by analyzing the current situation of ASP.NET related to industry projects in our school, analyzing the results of short surveys on students, and
analyzing whether ASP.NET is a better tool for teaching. Problems encountered during the move are also discussed and some of the learning resources are presented. It is anticipated that these will be helpful for teachers who intend to introduce ASP.NET.
2. WHA T MAKES ASP.NET SPECIAL?
中国领土争端
There are many articles on the Internet discussing the advantages of ASP.NET over Classic Active Server Pages (ASP), such as that ASP.NET introduces an integrated development environment (IDE), a single development library for all types of applications, compiled as well as strongly typed code, and a true OO approach to Web application development (Goodyear, 2002, Bloom, 2002).
微型红外摄像机Traditionally, we have three versions of ASP (ASP 1.0, ASP 2.0 and ASP 3.0), which are called Classic ASP. Although each version provides certain new features to overcome the shortcomings of its predecessors, these versions of ASP follow the same working model and share many limitations. Their successor ASP.NET supports complete new working model while preserving the traditional working model and provides innovative techniques to overcome the limitations of Classic ASP.
2.1. Architecture
ASP.NET enhances and extends the Windows DNA(Windows Distributed interNet Application). The windows DNA specification is a methodology for building n-tier applications using Microsoft (DCOM/COM) technologies. Breaking applications into functional pieces and deploying these across a network is a strategy to make better use of organizational resources. This needs a well-planned architecture. In the past, usually it was the windows DNA. DCOM communication normally has problems with firewalls and proxy servers. This means Windows DNA usually only works well within an intranet, not on the Internet. DCOM/ COM also need registry entries.
ASP.NET makes the process of creating and integrating Web Services easier, which can be
used in a similar manner to the Windows DNA. Here DCOM/COM is no longer involved. HTTP (as channels), SOAP (as formatters) and XML are used for communication and data-transfer between distributed components. This overcomes the problem of communicating across the Internet and across corporate firewalls without resorting to proprietary solutions that require additional communications ports to be opened to external access. In addition, URI (uniform resource identifier) and UDDI (Universal Description Discovery and Integration) are used for remote components references instead of registry entries.
2.2. Development
ASP.NET integrates seamlessly with VS.NET IDE. VS.NET includes built-in support for creating and modifying content. This unifies the ASP/VB programming models for the developers. Instead of opening multiple IDEs (as with Classic ASP platform), developers can open a single IDE and do all their work from a clean, consistent interface. VS.NET is equipped with powerful debugging environment. This means that the powerful debugger for Windows applications is now available to debug Web applications as well.
ASP.NET enables programmers to take advantage of the OOP model, for example, code sharing. Under OOP model, one of the most common ways to achieve code sharing is inheritance, which is not available in Classic ASP. Since complete OO features are supported in ASP.NET, developers can transfer their OO design smoothly into ASP.NET code, enabling a software company to keep their Windows application development styles, with which they are familiar, in Web application development; and also they can convert their Windows applications into Web applications without major modifications.
ASP.NET’s improved state maintenance features enable us to provide users with Web applications that are richer and faster than Classis ASP (Olges,2002). ASP.NET supports advanced session state management. There are two major problems with session management in Classic ASP: session obje
cts are stored in the Web server memory and session IDs are stored on the client computers as cookies. These prevent session management from being efficiently implemented. ASP.NET solves the se problems in two ways: it provides a “cookieless” option for session objects so that a session ID can be passed via URL; it provides three different session modes (in process, state server, and SQL Server), so that a session object can either be stored on the Web server, a remote server or a
database.
3. THE MOTIV A TIONS FOR MOVING
3.1. The industry motivation
I’ve checked almost all the industry projects in our school for three semesters on whether they are W AD related, if yes, then what tools they have used. Table 1 shows a brief summary of the results.for these three semesters, the total ASP/ASP.NET projects are increasing, but slowly. However the Classic ASP projects are dropping quickly and the ASP.NET projects are increasing rapidly (in the speed of more than 12% per semester). This gives us an idea that ASP.NET is preferred over Classic ASP in industry especially given that ASP.NET is only officially first released in 2002. Our student’s feedbacks from their industry communication confirm this view. A huge number of articles o
n the Internet also support this view. This encourages us to drop Classic ASP and move to ASP.NET in our W AD course. Higher education has over years recognized that it is a service industry and has to revaluate their approach in the industry by placing greater emphasis on meeting the expectations and needs of their stakeholders (Nair, 2002).
3.2. The student motivation
The students demand ASP.NET. When students enroll in our W AD course, most of them are aiming to become a professional software developer. As a matter of fact, some of them already are software developers, or they were software developers and are seeking to return to the workplace. Techniques highly demanded in workplace are of great interest to them.
A short survey has been given to past students and current students respectively. For the past students, among the 11 responses, 100% students still want to learn ASP.NET; and if they are given choice, 82% students prefer to learn ASP.NET rather than Classic ASP, 18% students like to learn both. These answers are also supported by comments, such as “I would prefer to know the technology that the industry requires me to work with”, “I would like to work in future as a W AD professional and I think ASP.NET would be useful in t his field.” For the current students, among the
16 responses, 75% students prefer to learn ASP.NET rather than Classic ASP. However, 25% students answered no idea. This could be due to that they lack of knowledge of Classic ASP. This survey is done after 6 weeks of teaching.
3.3. The pedagogical motivation
Pedagogically speaking, a good tool for industry is not necessarily a good tool for teaching. Is ASP.NET a better tool for teaching than Classic ASP?
ASP.NET provides much richer language features than Classic ASP. We often have options to perform certain tasks. A key benefit of ASP.NET is that there exists a more gradual transition in programming models from simple to powerful, or from easy to difficult. Although ASP.NET supports OOP model, you don’t hav e to program by using that model. A Web form without “code-behind” will work perfectly. An ASP.NET web page in complete Classic ASP model will still work. Although ASP.NET is integrated with VS.NET, we are not limited to use VS.NET. A notepad and a FTP client with a pre-created Web application directory also allow us to develop a reasonably large ASP.NET application. With ASP.NET, we can either develop a large distributed application with numbers of Web services and consumers, or develop a single simple Web application. Therefore, ASP.NET provi
des sufficient room for us to organize course materials at a suitable level for the students. The challenge for a lecturer is how to settle in at the right balance of power vs. simplicity, or at the right balance of difficulty vs. ease.
ASP.NET offers a more conventional approach to programming than does Classic ASP. It possesses all the features of a modern programming language. The Classic ASP programming style favors developers coming from HTML coding background, whereas ASP.NET is more suited to professional software developers. Given our entire W AD students have taken C/Delphi programming courses, and our aim is to output software professionals, ASP.NET is a better teaching tool for us. ASP.NET enhances the programming concepts the students learned from the previous courses and provides a good bridge to Advanced Distributed Computing and Advanced Object- Oriented Programming.
索爱w958C4. THE PROCESS
Our first step was to learn ASP.NET. After reading books and online tutorials, the next step is practical. We set an implementation server on the laptop in a stand-alone environment. The .NET Framework requires IIS 5 and the above; Windows 2000 or Windows XP professional will work with .NET. However, Windows XP home edition or Win dows 98 won’t work. On the client side, we can either use VS.NET or WebMatrix. Among these, only VS.NET costs money. The .NET
>改变自己与改变世界

本文发布于:2024-09-21 22:32:03,感谢您对本站的认可!

本文链接:https://www.17tex.com/xueshu/313048.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:改变   附录   论我国   领土   翻译   结构   争端
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2024 Comsenz Inc.Powered by © 易纺专利技术学习网 豫ICP备2022007602号 豫公网安备41160202000603 站长QQ:729038198 关于我们 投诉建议