教育资源为主的文档平台

当前位置: 查字典文档网> 所有文档分类> 高等教育> 其它> ASPNET技术大学毕业论文外文文献翻译及原文

ASPNET技术大学毕业论文外文文献翻译及原文

上传者:兰芳
|
上传时间:2017-06-03
|
次下载

ASPNET技术大学毕业论文外文文献翻译及原文

  毕 业 设 计(论文)

  外 文 文 献 翻 译

  文献、资料中文题目:http://www.wendangwang.com 技术

  文献、资料英文题目:http://www.wendangwang.com Technique 文献、资料来源:

  文献、资料发表(出版)日期:

  院 (部):

  专 业:

  班 级:

  姓 名:

  学 号:

  指导教师:

  翻译日期: 2017.02.14

  毕 业 设 计(论 文)

  院 系:

  专 业:

  班 级:

  学生姓名:

  导师姓名: 外文文献翻译 职称:

  http://www.wendangwang.com Technique

  1. Building http://www.wendangwang.com Pages

  http://www.wendangwang.com and the .NET Framework

  http://www.wendangwang.com is part of Microsoft's 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 http://www.wendangwang.com fits within the .NET framework, and you learn about the languages you can use in your http://www.wendangwang.com 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? Wouldn't 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 http://www.wendangwang.com pages. You need to understand, however, that you can access any of the .NET framework classes when you are building your http://www.wendangwang.com 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). http://www.wendangwang.com, 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 http://www.wendangwang.com Namespaces

  The classes contained in a select number of namespaces are available in your http://www.wendangwang.com pages by default. (You must explicitly import other namespaces.) These default namespaces contain classes that you use most often in your http://www.wendangwang.com 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

  expression match and replace operations.

  System.Web— Contains the basic classes for working with the World Wide Web, including classes for representing browser requests and server responses.

  System.Web.Caching— Contains classes used for caching the content of pages and classes for performing custom caching operations.

  System.Web.Security— Contains classes for implementing authentication and authorization such as Forms and Passport authentication.

  System.Web.SessionState— Contains classes for implementing session state.

  System.Web.UI— Contains the basic classes used in building the user interface of http://www.wendangwang.com pages.

  System.Web.UI.HTMLControls— Contains the classes for the HTML controls. System.Web.UI.WebControls— Contains the classes for the Web controls.

  .NET Framework-Compatible Languages

  For purposes of this book, you will write the application logic for your http://www.wendangwang.com pages using Visual Basic as your programming language. It is the default language for http://www.wendangwang.com pages. Although you stick to Visual Basic in this book, you also need to understand that you can create http://www.wendangwang.com pages by using any language that supports the .NET Common Language Runtime. Out of the box, this includes C#, http://www.wendangwang.com, and the Managed Extensions to C++. classes for performing regular

  NOTE

  The CD included with this book contains C# versions of all the code samples.

  Dozens of other languages created by companies other than Microsoft have been developed to work with the .NET framework. Some examples of these other languages include Python, SmallTalk, Eiffel, and COBOL. This means that you could, if you really wanted to, write http://www.wendangwang.com pages using COBOL.

  Regardless of the language that you use to develop your http://www.wendangwang.com pages, you need to understand that http://www.wendangwang.com pages are compiled before they are executed. This means that http://www.wendangwang.com pages can execute very quickly.

  The first time you request an http://www.wendangwang.com page, the page is compiled into a .NET class, and the resulting class file is saved beneath a special directory on your server named Temporary http://www.wendangwang.com Files. For each and every http://www.wendangwang.com page, a corresponding class file appears in the Temporary http://www.wendangwang.com Files directory. Whenever you request the same http://www.wendangwang.com page in the future, the corresponding class file is executed.

  When an http://www.wendangwang.com page is compiled, it is not compiled directly into machine code. Instead, it is compiled into an intermediate-level language called Microsoft Intermediate Language (MSIL). All .NET-compatible languages are compiled into this intermediate language.

  An http://www.wendangwang.com page isn't compiled into native machine code until it is actually requested by a browser. At that point, the class file contained in the Temporary http://www.wendangwang.com Files directory is compiled with the .NET framework Just in Time (JIT) compiler and executed.

  The magical aspect of this whole process is that it happens automatically in the background. All you have to do is create a text file with the source code for your http://www.wendangwang.com page, and the .NET framework handles all the hard work of converting it into compiled code for you.

  ASP CLASSIC NOTE

  What about VBScript? Before http://www.wendangwang.com, VBScript was the most popular language for developing Active Server Pages.

  http://www.wendangwang.com does not support VBScript, and this is good news. Visual Basic is a superset of VBScript, which means that Visual Basic has all the functionality of VBScript and more. So, you have a richer set of functions and statements with Visual Basic.

版权声明:此文档由查字典文档网用户提供,如用于商业用途请与作者联系,查字典文档网保持最终解释权!

下载文档

热门试卷

2016年四川省内江市中考化学试卷
广西钦州市高新区2017届高三11月月考政治试卷
浙江省湖州市2016-2017学年高一上学期期中考试政治试卷
浙江省湖州市2016-2017学年高二上学期期中考试政治试卷
辽宁省铁岭市协作体2017届高三上学期第三次联考政治试卷
广西钦州市钦州港区2016-2017学年高二11月月考政治试卷
广西钦州市钦州港区2017届高三11月月考政治试卷
广西钦州市钦州港区2016-2017学年高一11月月考政治试卷
广西钦州市高新区2016-2017学年高二11月月考政治试卷
广西钦州市高新区2016-2017学年高一11月月考政治试卷
山东省滨州市三校2017届第一学期阶段测试初三英语试题
四川省成都七中2017届高三一诊模拟考试文科综合试卷
2017届普通高等学校招生全国统一考试模拟试题(附答案)
重庆市永川中学高2017级上期12月月考语文试题
江西宜春三中2017届高三第一学期第二次月考文科综合试题
内蒙古赤峰二中2017届高三上学期第三次月考英语试题
2017年六年级(上)数学期末考试卷
2017人教版小学英语三年级上期末笔试题
江苏省常州西藏民族中学2016-2017学年九年级思想品德第一学期第二次阶段测试试卷
重庆市九龙坡区七校2016-2017学年上期八年级素质测查(二)语文学科试题卷
江苏省无锡市钱桥中学2016年12月八年级语文阶段性测试卷
江苏省无锡市钱桥中学2016-2017学年七年级英语12月阶段检测试卷
山东省邹城市第八中学2016-2017学年八年级12月物理第4章试题(无答案)
【人教版】河北省2015-2016学年度九年级上期末语文试题卷(附答案)
四川省简阳市阳安中学2016年12月高二月考英语试卷
四川省成都龙泉中学高三上学期2016年12月月考试题文科综合能力测试
安徽省滁州中学2016—2017学年度第一学期12月月考​高三英语试卷
山东省武城县第二中学2016.12高一年级上学期第二次月考历史试题(必修一第四、五单元)
福建省四地六校联考2016-2017学年上学期第三次月考高三化学试卷
甘肃省武威第二十三中学2016—2017学年度八年级第一学期12月月考生物试卷

网友关注视频

三年级英语单词记忆下册(沪教版)第一二单元复习
第五单元 民族艺术的瑰宝_16. 形形色色的民族乐器_第一课时(岭南版六年级上册)_T1406126
【部编】人教版语文七年级下册《老山界》优质课教学视频+PPT课件+教案,安徽省
【获奖】科粤版初三九年级化学下册第七章7.3浓稀的表示
沪教版牛津小学英语(深圳用) 四年级下册 Unit 12
外研版英语三起5年级下册(14版)Module3 Unit2
二年级下册数学第一课
沪教版牛津小学英语(深圳用) 四年级下册 Unit 4
第12章 圆锥曲线_12.7 抛物线的标准方程_第一课时(特等奖)(沪教版高二下册)_T274713
七年级下册外研版英语M8U2reading
北师大版数学四年级下册第三单元第四节街心广场
冀教版小学数学二年级下册第二单元《有余数除法的简单应用》
精品·同步课程 历史 八年级 上册 第15集 近代科学技术与思想文化
3.2 数学二年级下册第二单元 表内除法(一)整理和复习 李菲菲
七年级英语下册 上海牛津版 Unit5
《空中课堂》二年级下册 数学第一单元第1课时
外研版英语三起6年级下册(14版)Module3 Unit1
苏教版二年级下册数学《认识东、南、西、北》
沪教版牛津小学英语(深圳用) 五年级下册 Unit 7
第8课 对称剪纸_第一课时(二等奖)(沪书画版二年级上册)_T3784187
外研版英语七年级下册module1unit3名词性物主代词讲解
沪教版牛津小学英语(深圳用) 六年级下册 Unit 7
沪教版八年级下次数学练习册21.4(2)无理方程P19
冀教版小学英语五年级下册lesson2教学视频(2)
沪教版牛津小学英语(深圳用) 五年级下册 Unit 10
七年级英语下册 上海牛津版 Unit9
8.练习八_第一课时(特等奖)(苏教版三年级上册)_T142692
第五单元 民族艺术的瑰宝_16. 形形色色的民族乐器_第一课时(岭南版六年级上册)_T3751175
二次函数求实际问题中的最值_第一课时(特等奖)(冀教版九年级下册)_T144339
19 爱护鸟类_第一课时(二等奖)(桂美版二年级下册)_T3763925