ASP.NET入门C#版毕业论文外文文献翻译.doc

上传人:豆**** 文档编号:29940735 上传时间:2022-08-02 格式:DOC 页数:16 大小:62.50KB
返回 下载 相关 举报
ASP.NET入门C#版毕业论文外文文献翻译.doc_第1页
第1页 / 共16页
ASP.NET入门C#版毕业论文外文文献翻译.doc_第2页
第2页 / 共16页
点击查看更多>>
资源描述

《ASP.NET入门C#版毕业论文外文文献翻译.doc》由会员分享,可在线阅读,更多相关《ASP.NET入门C#版毕业论文外文文献翻译.doc(16页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、装订线 D 科技译文Beginning ASP.NET 2.0 in C# ASP (Active Server Pages) is a relatively new technology thats already leapt through several stages of evolution. It was introduced about seven years ago as an easy way to add dynamic content to ordinary web pages. Since then, its grown into something much more

2、ambitious: a platform for creating advanced web applications, including merce shops, data.driven portal sites, and just about anything else you can find on the Internet.ASP.NET 2.0 is the latest version of ASP, and it represents the most dramatic change yet. With ASP.NET, developers no longer need t

3、o paste together a jumble of HTML and script code in order to program the Web. Instead, you can create full.scale web applications using nothing but code and a design tool such as Visual Studio 2008 The cost of all this innovation is the learning curve. Not only do you need to learn how to use an ad

4、vanced design tool (Visual Studio) and a toolkit of objects (the .NET Framework), you also need to master a programming language such as C#.The Internet began in the late 1960s as an experiment. Its goal was to create a truly resilient information networkone that could withstand the loss of several

5、computers without preventing the others from communicating. Driven by potential disaster scenarios (such as nuclear attack), the U.S. Department of Defense provided the initial funding. The early Internet was mostly limited to educational institutions and defense contractors. It flourished as a tool

6、 for academic collaboration, allowing researchers across the globe to share information. In the early 1990s, modems were created that could work over existing phone lines, and the Internet began to open up to commercial users. In 1993, the first HTML browser was created, and the Internet revolution

7、began. It would be difficult to describe early websites as web applications. Instead, the first generation of websites often looked more like brochures, consisting mostly of fixed HTML pages that needed to be updated by hand. Basic HTML page is a little like a word.processing documentit contains for

8、matted content that can be displayed on your computer, but it doesnt actually do anything. The following example shows HTML at its simplest, with a document that contains a heading and single line of text: An HTML document has two types of content: the text and the tags that tell the browser how to

9、format it. The tags are easily recognizable, because they occur inside angled brackets (). HTML defines tags for different levels of headings, paragraphs, hyperlinks, italic and bold formatting, horizontal lines, and so on. For example, Some Text tells the browser to display Some Text in the Heading

10、 1 style, which uses a large, bold font. Figure 1.1 shows the simple HTML page in a browser.HTML 2.0 introduced the first seed of web programming with a technology called HTML forms. HTML forms expand HTML so that it includes not only formatting tags but also tags for graphical widgets, or controls.

11、 These controls include common ingredients such as drop.down lists, text boxes, and buttons. Heres a sample web page created with HTML form controls:HTML forms allow web application developers to design standard input pages. When the user clicks the Submit button on the page shown in Figure 1.2, all

12、 the data in the input controls (in this case, the two check boxes) is patched together into one long string and sent to the web server. On the server side, a custom application receives and processes the data. Amazingly enough, the controls that were created for HTML forms more than ten years ago a

13、re still the basic foundation that youll use to build dynamic ASP.NET pages! The difference is the type of application that runs on the server side. In the past, when the user clicked a button on a form page, the information might have been e.mailed to a set account or sent to an application on the

14、server that used the challenging CGI (Common Gateway Interface) standard. Today, youll work with the much more capable and elegant ASP.NET platform. To understand why ASP.NET was created, it helps to understand the problems of other web development technologies. With the original CGI standard, for e

15、xample, the web server must launch a completely separate instance of the application for each web request. If the website is popular, the web server must struggle under the weight of hundreds of separate copies of the application, eventually becoming a victim of its own successor counter this proble

16、m, Microsoft developed ISAPI (Internet Server Application Programming Interface), a higher.level programming model. ISAPI solved the performance problem but at the cost of significant complexity. Even after ISAPI developers master the tricky C+ programming language, they still lie awake at night wor

17、rying about confounding issues such as multithreading. ISAPI programming is definitely not for the fainthearted. SAPI never really went away. Instead, Microsoft used it to build higher.level develop.mint platforms, such as ASP and ASP.NET. Both of these technologies allow developers to program dynam

18、ic web pages without worrying about the low.level implementation details. For that reason, both platforms have become incredibly successful. The original ASP platform garnered a huge audience of nearly one million developers. When ASP.NET was first released, it generated even more interest as the ce

19、nterpiece of the .NET Frame.work. In fact, ASP.NET 1.0 was enthusiastically put to work in dozens of large.scale commercial websites even when it was only in late beta. Despite having similar underpinnings, ASP and ASP.NET are radically different. ASP is a script.based programming language that requ

20、ires a thorough understanding of HTML and a good deal of painful coding. ASP.NET, on the other hand, is an object.oriented pro.gamming model that lets you put together a web page as easily as you would build a Windows application. In many respects, its easier to learn ASP.NET than to master ASP, eve

21、n though ASP.NET is far more powerful. At the same time that server.side web development was moving through an alphabet soup of technologies, a new type of programming was gaining popularity. Developers began to experiment with the different ways they could enhance web pages by embed.ding multimedia

22、 and miniature applets built with JavaScript, DHTML (Dynamic HTML), and Java code. These client.side technologies dont involve any server processing. Instead, the complete application is downloaded to the client browser, which executes it locally. The greatest problem with client.side technologies i

23、s that they arent supported equally by all browsers and operating systems. One of the reasons that web development is so popular in the first place is because web applications dont require setup CDs, down.loads, and other tedious (and error.prone) deployment steps. Instead, a web application can be

24、used on any computer that has Internet access. But when developers use client.side technologies, they encounter a few familiar headaches. Suddenly, cross.browser compatibility becomes a problem. Developers are forced to test their websites with operating systems and browsers, and they might even nee

25、d to distribute browser updates to their clients. In other words, the client.side model sacrifices some of the most important benefits of web development. or that reason, ASP.NET is designed as a server.side technology. All ASP.NET code executes on the server. When the code is finished executing, th

26、e user receives an ordinary HTML page, which can be viewed in any browser. Figure 1.3 shows the difference between the server.side and client.side model. These are some other reasons for avoiding client.side programming: Isolation: Client.side code cant access server.side resources. For example, a c

27、lient.side application has no easy way to read a file or interact with a database on the server (at least not without running into problems with security and browser compatibility).Security: End users can view client.side code. And once malicious users understand how an application works, they can o

28、ften tamper with it. me cases, ASP.NET allows you to combine the best of client.side programming with server.side programming. For example, the best ASP.NET controls can intelligently detect the features of the client browser. If the browser supports JavaScript, these controls will return a web page

29、 that incorporates JavaScript for a richer, more responsive user interface. However, no matter what the capabilities of the browser, your code is always executed on the server. State limitations: To ensure optimum performance, the Web is built on stateless protocols, which means as soon as a page is

30、 sent to a user, the connection is closed and any user.specific information is discarded. ASP includes a session state feature that allows programmers to work around this problem. Using session state, a web application can retain temporary information about each client in server memory. However, ses

31、sion state is useless in scenarios where a website is hosted by several separate web servers. In this scenario, a client might access server B while its session information is trapped on server A and essentially abandoned. ASP.NET corrects this problem by allowing state to be stored in a central rep

32、ository, such as a separate process or a database that all servers can access.ASP.NET deals with these problems (and many more) by introducing a completely new model for web pages. This model is based on a remarkable piece of technology called the NET Framework. You should understand that the .NET F

33、ramework is really a cluster of several technologies: The .NET languages: These include C# and VB .NET (Visual Basic .NET), the object.oriented and modernized successor to Visual Basic 6.0; these languages also include Script .NET (a server.side version of JavaScript), J# (a Java clone), and C+ with

34、 Managed Extensions. he CLR (Common Language Runtime): The CLR is the engine that executes all .NET programs and provides automatic services for these applications, such as security checking, memory management, and optimization. The .NET Framework class library: The class library collects thousands

35、of pieces of rebuilt functionality that you can “snap in” to your applications. These features are sometimes organized into technology sets, such as ADO.NET (the technology for creating database applications) and Windows Forms (the technology for creating desktop user interfaces).ASP.NET: This is th

36、e engine that hosts web applications and web services, with almost any feature from the .NET class library. ASP.NET also includes a set of web.specific services.sual Studio: This optional development tool contains a rich set of productivity and debugging features.ASP.NET入门C#版ASP(动态服务器主页)是一种较新的技术,它已经

37、过几个阶段的发展(进化).它是怎么诞生的呢?在七年前,它作为一种简单的方法来往普通网页里添加动态内容。自从那时以后,它的发展势头强劲:作为高级网页程序的开发平台,包括:电子商务网站、基于事件驱动的门户网站和你在网上能看到的其他所有东西。ASP.NET 2.0 是ASP的最新版本,而且拥有最让人激动的更新。在ASP.NET帮助下,在网络编程时,开发者不再把一大堆HTML源码和脚本代码杂乱地放在同一页面上。你可以完全使用代码和工具(Visual Studio 2005)来创建网页程序。这些创新的代价仅仅是多学一些东西。你要学一些高级开发工具(Visual Studio)和工具包(the .NET

38、Framework),而且你需要精通一门编程语言,如C。网络发展的演化因特网是在1960年末在试验中诞生的。它的目标是:建立一个真实的、有弹性的信息网络可以经受的起若干数量的电脑的崩溃,而不至于阻断其他电脑的正常通信。经得起潜在的重大灾难(如核武器攻击)。美国国防部提供了刚开始的研究基金。最早的因特网局限在教育机构和从事国防的单位。它因为作为学术研究的一种工具而繁荣,它让全球的研究人员可以彼此共享信息。到了1990初,伟大的“猫”诞生了,它通过电话线工作,从此,因特网向商业用户打开了大门。在1993年,第一个HTML浏览器诞生了,标志着因特网革命的到来。我们很难把最早的网页称为网页序。第一代的

39、网页看起来更像小册子:主要由固定的HTML页面构成,这些也都需要手动修改。一个简单的HTML页面有点像一个字处理文档它包含了格式化的内容,可以在你的电脑上显示,但是并不完成其他任何功能。上面的就是一个最简单的例子,文档包括头信息和单行文本。一个HTML文档有两种类型的内容:文本和标记(告诉浏览器如何格式化)。这些标记很容易辨认,因为它们总是出现在之间。HTML定义了不同级别的标题、段落、超链接、斜体和粗体格式、水平线等。举个例子:某个文本,告诉浏览器用标题1的格式来显示这个文本,就是用最大的黑体字来显示。图11显示了这个页面在浏览器中的效果。提示:你不需要精通HTML就能进行ASP.NET网页

40、编程,虽然它(HTML)是很有用的。为了快速介绍一下HTML,给大家介绍一个网上的优秀HTML指南。HTML 2.0 首次引入了一个网页编程的新技术,称为HTML表单。HTML表单扩展了HTML的功能,不仅包含了格式化标签,而且包含了窗体小部件或者叫控件。这些控件包含了普通的功能部件,如下拉列表、文本框和按钮。下面是一个由HTML表单控件创建的网页。网页表单允许网页程序设计师设计标准的输入页面。当用户单击图12的提交按钮,所有在输入控件中的数据(在这个例子中是两个复选框)将打包成一个长字符串,接着发送到服务器。在服务器端,一个客户程序接收和处理这些数据。令人惊奇的是:这些为HTML表单创建有超

41、过十年之久的控件仍然是你用来创建ASP.NET页面的基础。不同的是这些程序控件将运行在服务器端。在过去,当用户单击一个表单页面的按钮时,信息要通过e.mail来发送或者使用在服务器端运行的程序(通过CGI标准)。今天,你将可以使用更强大、更优雅的ASP.NET平台。理解ASP.NET的创建原因可以帮助我们了解其他网页开发技术遇到的问题。在原始的CGI标准下,举个例子,网页服务器必须为每个网页请求建立一个单独的程序实例。如果这个网页很受人们欢迎(那访问者将很多),那么网页服务器就要经受得起数以百计的独立程序副本,这样最终导致服务器反而因为受欢迎而成为受害者。为了解决这个问题,微软开发了ISAPI

42、(网络服务程序编程接口),一个高层次的编程模型。ISAPI解决了性能问题,但是付出了复杂性的代价。即使ISAPI开发者是个C编程老手,他仍然晚上担心到失眠,因为会遇到多线程处理这样让人麻烦的问题。ISAPI编程是给那些坚强的“夜猫子”,不是给那些懦弱的人。ISAPI并没有真正消失,取代它的是,微软利用它建立了一个更高级的开发平台,如ASP 和 ASP.NET。这两种技术都可以使开发者编写动态网页,而不需要担心底层的执行细节。由于这个原因,这两个平台成功到令人难以置信。最初的ASP平台吸引了将近一百万的开发人员。当ASP.NET第一次发布时,作为.NET Framework的核心部件受到人们更多

43、关注。事实上,ASP.NET 1.0已经在数十个大型商业网络中得到应用,虽然它还在最后的测试阶段。虽然拥有类似的基础,ASP 和ASP.NET有根本的不同。ASP是基于脚本的编程语言,需要全面理解HTML,而且还要经过一大堆痛苦的编程训练。而ASP.NET,在另一方面,是面向对象的编程模型,建立网页页面就像建立桌面程序一样容易。在很多方面,学会ASP.NET比精通ASP要容易,而且ASP.NET功能更加强大。同时,服务器端的网络发展为从技术的字母形花片汤到广受欢迎的一类编程开发人员开始试着使用嵌入多媒体、JavaScript的小程序、DHTML和Java代码来增强网页的功能。这些基于客户端的技

44、术不需要通过服务器的处理就能实现。所有的程序都(从服务器)下载到客户端浏览器,在本地执行。客户端技术的最大问题就是它们不被所有的浏览器和操作系统完美的支持。其中的一个原因就是网络开发太受欢迎了,首先是网络程序不需要通过CD安 装、下载和其他单调的配置。取而代之的是,一个网络程序只要能上网的电脑就可以执行了。但是,一旦开发者使用客户端技术,他们就会遇到一些常见的问题:比 如跨浏览器的兼容性。开发者就不得不在不同的浏览器和操作系统中测试他们的网页,甚至他们还要给用户发布浏览器更新。换句话说,客户端模型牺牲了网络程序 最重要的优良特性。由于上述原因,ASP.NET被设计为服务器端技术。所有的ASP.

45、NET代码都在服务器上执行。当代码执行完毕时,用户就会得到一个普通的HTML页面,这样任何浏览器都可以浏览了。图13显示了服务器端和客户端模型的不同。这里还有几条原因要避免客户端编程:孤立性:客户端代码无法访问服务器资源。举个例子,没有一种简单的方式让客户端可以读取一个在服务器上的文件或进行数据库连接。(至少不会遇到安全性和浏览器兼容性的问题) 安全性:最终用户可以查看客户端代码。一旦有不怀好意的用户理解了程序是怎么工作的,他们就有可能乱来了。在某些方面,ASP.NET允许你通过服务器端编程结合最佳的客户端编程。举个例子:ASP.NET控件可以智能侦测客户端浏览器的属性。如果该浏览器支持Jav

46、aScript,那么这些控件将返回一个含有JavaScript的更多功能的页面。尽管如此,不管浏览器的功能有多强大,你的代码始终在服务器端执行。状态限制:为了保证最佳性能,网络设计成无状态的协议。意思就是:一旦页面已经传送给用户,连接就关闭了而且用户指定的信息也被丢弃了。ASP包括一个session state(会话状态)特性允许程序员来解决这个问题。使用session state,一个网页程序可以为每一个客户端暂时保存信息(保存在服务器的内存里)。尽管如此,如果一个网站是放在几个服务器上,session state就无能无力了。在这种情况下,一个客户要访问B服务器,而他的会话信息是被A服务器

47、保留的,这样实际上这个会话信息将被丢弃掉。ASP.NET纠正了这个问题,允许把状态储存在中央仓库,就像一个单独的进程或者一个所有服务器都可以访问的数据库。ASP.NET通过引进全新的模型解决了上述问题(当然不止这些啦)。这个模型是基于一个伟大的技术,称之为.NET Framework。你应该知道的是:.NET Framework是几种技术的群集(集合)。.NET语言:包括CVB.NET(Visual Basic .NET一种面向对象的、现代化的语言(VB 6.0的继任者);这些语言还包括:Jscirpt.NET(服务器端版本的JavaScript,J(java的兼容产品),还有C管理扩充。CL

48、R(公共语言运行库):CLR是执行所有.NET程序和为这些程序提供自动服务的引擎,如安全验证、内存管理和优化等。.NET Framework类库:类库包含了成千上万个已经预建好的函数,你可以在你的程序中嵌入它们。这些众多属性有时也被成为一个技术集,如ADO.NET(用来创建数据库程序的技术)和Windows Forms(也是一种技术,用来创建基于桌面的用户界面程序)。ASP.NET:这是一种主机网页程序和网络服务的引擎,从.NET类库中包含了几乎所有特性。ASP.NET还包含了网页特有的服务。Visual Studio:这个可选的开发工具包含了众多提高效率和调试功能的特性。生命列车The Tr

49、ain Of Life1. 不久以前,我读了一本书。书中把人生比作一次旅行。2. 人生一世,就好比是一次搭车旅行,要经历无数次上车、下车; 时常有事故发生; 有时是意外惊喜,有时却是刻骨铭心的悲伤 3. 降生人世,我们就坐上了生命列车。我们以为我们最先见到的那两个人-我们的父母,会在人生旅途中一直陪伴着我们。 4. 很遗憾,事实并非如此。他们会在某个车站下车,留下我们,孤独无助。他们的爱、他们的情、他们不可替代的陪伴,再也无从寻找。 5. 尽管如此,还会有其他人上车。他们当中的一些人将对我们有着特殊的意义。 6. 他们之中有我们的兄弟姐妹, 有我们的亲朋好友。我们还将会体验千古不朽的爱情故事。7. 坐同一班车的人当中,有的轻松旅行。8. 有的却带着深深的悲哀 还有的,在列车上四处奔忙,随时准备帮助有需要的人 9. 很多人下车后,其他旅客对他们的回忆历久弥新 但是,也有一些人,当他们离开座位时,却没有人

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 小学资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁