ASP技术ASPTechnique毕业论文外文文献翻译及原文
上传者:曲卫芬|上传时间:2017-06-03|密次下载
ASP技术ASPTechnique毕业论文外文文献翻译及原文
毕 业 设 计(论文)
外 文 文 献 翻 译
文献、资料中文题目:http://www.wendangwang.com 技术
文献、资料英文题目:http://www.wendangwang.com Technique 文献、资料来源:
文献、资料发表(出版)日期:
院 (部):
专 业:
班 级:
姓 名:
学 号:
指导教师:
翻译日期: 2017.02.14
毕业设计外文资料翻译
题 目
学 院 XXXXXXXXXXXX
专 业 XXXXX
班 级 XXXX
学 生 XX
学 号 XXXXXXXXX
指导教师 XXX
Advanced http://www.wendangwang.com AJAX Server Controls ,2009, 177(5): 97-102.
http://www.wendangwang.com Technique
Adam Calderon Joel Rumerman
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 classes for performing regular 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++.
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.
Furthermore, unlike VBScript, Visual Basic is a compiled language. This means that if you use Visual Basic to rewrite the same code that you wrote with VBScript, you can get better performance.
If you have worked only with VBScript and not Visual Basic in the past, don't worry. Since VBScript is so closely related to Visual Basic, you'll find it easy to make the transition between the two languages.
NOTE
Microsoft includes an interesting tool named the IL Disassembler (ILDASM) with
the .NET framework. You can use this tool to view the disassembled code for any of the http://www.wendangwang.com classes in the Temporary http://www.wendangwang.com Files directory. It lists all the methods and properties of the class and enables you to view the intermediate-level code.
This tool also works with all the http://www.wendangwang.com controls discussed in this chapter. For example, you can use the IL Disassembler to view the intermediate-level code for the TextBox control (located in a file named System.Web.dll).
Introducing http://www.wendangwang.com Controls
http://www.wendangwang.com controls provide the dynamic and interactive portions of the user interface for your Web application. The controls render the content that the users of your Web site actually see and interact with. For example, you can use controls to create HTML form elements, interactive calendars, and rotating banner advertisements.
http://www.wendangwang.com controls coexist peacefully with HTML content. Typically, you create the static areas of your Web pages with normal HTML content and create the dynamic or interactive portions with http://www.wendangwang.com controls.
The best way to understand how http://www.wendangwang.com controls work in an HTML page is to look at a simple Web Forms Page.
Adding Application Logic to an http://www.wendangwang.com Page
The second building block of an http://www.wendangwang.com page is the application logic, which is the actual programming code in the page. You add application logic to a page to handle both control and page events.
下载文档
热门试卷
- 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月月考生物试卷
网友关注
- 甲醇组合燃烧的性能研究
- 进口汽车维修技巧缩略语词典[整理版]
- 35工装治具管理程序(中日版)
- 消防系统设备设施维修保养合同
- 引领汽车ECU测试技术的发展脉搏——访易特驰汽车技术(上海)有限公司总经理国拉汉思博士
- 36例紧急微创联合开颅术抢救急重型颅内出血的临床意义
- EDA工具与系统概述
- MC-3C和MC-4C仪器实践手册[精华]
- 代做机械毕业设计、课程设计
- [精彩]PCB制作流程及说明(下集)00039
- 机械词典
- [优质文档]汽车驾驶技能图解教程大全
- 船用柴油机排气阀的断裂失效分析
- 细胞角蛋白19mRNA在口腔鳞状细胞癌中表达的研究
- 汽车维修工 维修电工考证
- 第四章+汽车市场营销策略
- 汽车配件文章.doc
- 浅析汽车总线技术
- 汽车发动机构造与维修】形成性考核册作业答案
- 职业汽车销售顾问内训提升课程《汽车技术与服务》(77页)
- 机械行业的自主创新发展路线
- H13147-汽车改装完全手册
- 日照PAC生产厂家讲解塑料电镀污水排放的处理方法
- 大众朗逸汽车用户使用手册-2/2
- 口腔种植
- 实用机械维修技术手册2
- 学术论文:ICP扫描光谱仪的研发(可编辑文本)
- 汽车基本常识(必读)ppt
- 新电瓶车新电瓶充电多久适合[整理版]
- 我国汽车营销渠道现状及其优化策略研究[权威资料]
网友关注视频
- 外研版英语七年级下册module3 unit2第一课时
- 【部编】人教版语文七年级下册《老山界》优质课教学视频+PPT课件+教案,安徽省
- 沪教版牛津小学英语(深圳用)五年级下册 Unit 1
- 【部编】人教版语文七年级下册《泊秦淮》优质课教学视频+PPT课件+教案,辽宁省
- 小学英语单词
- 【部编】人教版语文七年级下册《泊秦淮》优质课教学视频+PPT课件+教案,广东省
- 第五单元 民族艺术的瑰宝_16. 形形色色的民族乐器_第一课时(岭南版六年级上册)_T1406126
- 8 随形想象_第一课时(二等奖)(沪教版二年级上册)_T3786594
- 苏科版数学七年级下册7.2《探索平行线的性质》
- 沪教版八年级下次数学练习册21.4(2)无理方程P19
- 【获奖】科粤版初三九年级化学下册第七章7.3浓稀的表示
- 二次函数求实际问题中的最值_第一课时(特等奖)(冀教版九年级下册)_T144339
- 第五单元 民族艺术的瑰宝_16. 形形色色的民族乐器_第一课时(岭南版六年级上册)_T3751175
- 19 爱护鸟类_第一课时(二等奖)(桂美版二年级下册)_T502436
- 3月2日小学二年级数学下册(数一数)
- 外研版英语七年级下册module1unit3名词性物主代词讲解
- 外研版英语三起6年级下册(14版)Module3 Unit1
- 苏科版数学 八年级下册 第八章第二节 可能性的大小
- 外研版英语三起6年级下册(14版)Module3 Unit2
- 七年级英语下册 上海牛津版 Unit5
- 《空中课堂》二年级下册 数学第一单元第1课时
- 8.对剪花样_第一课时(二等奖)(冀美版二年级上册)_T515402
- 化学九年级下册全册同步 人教版 第18集 常见的酸和碱(二)
- 沪教版牛津小学英语(深圳用) 五年级下册 Unit 12
- 二年级下册数学第三课 搭一搭⚖⚖
- 沪教版牛津小学英语(深圳用) 四年级下册 Unit 2
- 沪教版牛津小学英语(深圳用) 四年级下册 Unit 12
- 沪教版八年级下册数学练习册21.3(2)分式方程P15
- 七年级英语下册 上海牛津版 Unit3
- 沪教版牛津小学英语(深圳用) 四年级下册 Unit 7
精品推荐
- 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
- 网吧管理