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月月考生物试卷
网友关注
- 2009年天津中考化学试题
- 高中家长给老师的一份信
- 2015年广东省中考化学模拟题及答案
- 大连市中考化学气体制取专项习题汇总
- 2015年社会中考地理部分选择题汇编
- 中考数学创新题集锦_含答案_-
- 贵州黔西南州2013年中考英语试卷
- 2015年中考备考冲刺阶段专题复习专题一、数与式
- 上海市闸北区2015届初三二模物理试题
- 读《边城》有感
- 上海市闸北区2015届初三二模化学试题
- 世界文化之旅的学案
- 2015中考数学
- 初二七班班规
- 中考题物理
- 鲁迅《祝福》教案设计
- 新材料作文的审题立意和拟题
- 八年级思想品德下册二、三、四单元测试
- 2010年河北省中考理综试题及答案
- 成都七中2011年外地生招生考试题
- 2015A股上市公司年报高送转专题
- 长春市2014年中考化学试题(Word版,含答案)
- 光色凉味
- 2015成都中考练习卷01
- 2015天津中考分析及预测
- 2015年广东省中考数学模拟试卷
- 金华市金东区四校期中联考2013[1].11--七社政
- 掘金者:博恩_崔西七步成功公式
- 分论点设置示例分析
- 中考词语练习3
网友关注视频
- 化学九年级下册全册同步 人教版 第25集 生活中常见的盐(二)
- 第4章 幂函数、指数函数和对数函数(下)_六 指数方程和对数方程_4.7 简单的指数方程_第一课时(沪教版高一下册)_T1566237
- 外研版英语三起5年级下册(14版)Module3 Unit1
- 飞翔英语—冀教版(三起)英语三年级下册Lesson 2 Cats and Dogs
- 【部编】人教版语文七年级下册《泊秦淮》优质课教学视频+PPT课件+教案,广东省
- 19 爱护鸟类_第一课时(二等奖)(桂美版二年级下册)_T3763925
- 二年级下册数学第一课
- 冀教版小学英语五年级下册lesson2教学视频(2)
- 8 随形想象_第一课时(二等奖)(沪教版二年级上册)_T3786594
- 外研版英语七年级下册module3 unit2第二课时
- 冀教版小学数学二年级下册第二单元《有余数除法的简单应用》
- 北师大版数学 四年级下册 第三单元 第二节 小数点搬家
- 河南省名校课堂七年级下册英语第一课(2020年2月10日)
- 【部编】人教版语文七年级下册《过松源晨炊漆公店(其五)》优质课教学视频+PPT课件+教案,辽宁省
- 沪教版八年级下次数学练习册21.4(2)无理方程P19
- 第五单元 民族艺术的瑰宝_16. 形形色色的民族乐器_第一课时(岭南版六年级上册)_T1406126
- 六年级英语下册上海牛津版教材讲解 U1单词
- 精品·同步课程 历史 八年级 上册 第15集 近代科学技术与思想文化
- 苏科版数学 八年级下册 第八章第二节 可能性的大小
- 苏科版数学七年级下册7.2《探索平行线的性质》
- 《小学数学二年级下册》第二单元测试题讲解
- 【部编】人教版语文七年级下册《老山界》优质课教学视频+PPT课件+教案,安徽省
- 3月2日小学二年级数学下册(数一数)
- 【部编】人教版语文七年级下册《过松源晨炊漆公店(其五)》优质课教学视频+PPT课件+教案,江苏省
- 【获奖】科粤版初三九年级化学下册第七章7.3浓稀的表示
- 人教版历史八年级下册第一课《中华人民共和国成立》
- 沪教版牛津小学英语(深圳用) 四年级下册 Unit 12
- 第8课 对称剪纸_第一课时(二等奖)(沪书画版二年级上册)_T3784187
- 冀教版小学数学二年级下册第二单元《有余数除法的整理与复习》
- 七年级英语下册 上海牛津版 Unit3
精品推荐
- 2016-2017学年高一语文人教版必修一+模块学业水平检测试题(含答案)
- 广西钦州市高新区2017届高三11月月考政治试卷
- 浙江省湖州市2016-2017学年高一上学期期中考试政治试卷
- 浙江省湖州市2016-2017学年高二上学期期中考试政治试卷
- 辽宁省铁岭市协作体2017届高三上学期第三次联考政治试卷
- 广西钦州市钦州港区2016-2017学年高二11月月考政治试卷
- 广西钦州市钦州港区2017届高三11月月考政治试卷
- 广西钦州市钦州港区2016-2017学年高一11月月考政治试卷
- 广西钦州市高新区2016-2017学年高二11月月考政治试卷
- 广西钦州市高新区2016-2017学年高一11月月考政治试卷
分类导航
- 互联网
- 电脑基础知识
- 计算机软件及应用
- 计算机硬件及网络
- 计算机应用/办公自动化
- .NET
- 数据结构与算法
- Java
- SEO
- C/C++资料
- linux/Unix相关
- 手机开发
- UML理论/建模
- 并行计算/云计算
- 嵌入式开发
- windows相关
- 软件工程
- 管理信息系统
- 开发文档
- 图形图像
- 网络与通信
- 网络信息安全
- 电子支付
- Labview
- matlab
- 网络资源
- Python
- Delphi/Perl
- 评测
- Flash/Flex
- CSS/Script
- 计算机原理
- PHP资料
- 数据挖掘与模式识别
- Web服务
- 数据库
- Visual Basic
- 电子商务
- 服务器
- 搜索引擎优化
- 存储
- 架构
- 行业软件
- 人工智能
- 计算机辅助设计
- 多媒体
- 软件测试
- 计算机硬件与维护
- 网站策划/UE
- 网页设计/UI
- 网吧管理