外文翻译---ASP.NET介绍以及内联代码和共享
《外文翻译---ASP.NET介绍以及内联代码和共享》由会员分享,可在线阅读,更多相关《外文翻译---ASP.NET介绍以及内联代码和共享(11页珍藏版)》请在毕设资料网上搜索。
1、附录 1 英文原文 Introduction to ASP.NET Pages and Inline Code and Share10 The ASP.NET Web Forms page framework is a scalable common language runtime programming model that can be used on the server to dynamically generate Web pages. Intended as a logical evolution of ASP (ASP.NET provides syntax compatibi
2、lity with existing pages), the ASP.NET page framework has been specifically designed to address a number of key deficiencies in the previous model. In particular, it provides the ability to create and use reusable UI controls that can encapsulate common functionality and thus reduce the amount of co
3、de that a page developer has to write, the ability for developers to cleanly structure their page logic in an orderly fashion (not spaghetti code), and the ability for development tools to provide strong WYSIWYG design support for pages (existing classic ASP code is opaque to tools). This section of
4、 the QuickStart provides a high-level code walkthrough of some basic ASP.NET page features. Subsequent sections of the QuickStart drill down into more specific details. ASP.NET pages are text files with an .htm file name extension. Pages consist of code and markup and are dynamically compiled and ex
5、ecuted on the server to produce a rendering to the requesting client browser (or device). They can be deployed throughout an IIS virtual root directory tree. When a browser client requests .htm resources, the ASP.NET runtime parses and compiles the target file into a .NET Framework class. This class
6、 can then be used to dynamically process incoming requests. (Note that the .htm file is compiled only the first time it is accessed; the compiled type instance is then reused across multiple requests). An ASP.NET page can be created simply by taking an existing HTML file and changing its file name e
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中设计图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 外文 翻译 asp net 介绍 以及 内联 代码 共享 同享
