计算机专业毕业设计外文翻译----ASP.NET 网页概述
《计算机专业毕业设计外文翻译----ASP.NET 网页概述》由会员分享,可在线阅读,更多相关《计算机专业毕业设计外文翻译----ASP.NET 网页概述(7页珍藏版)》请在毕设资料网上搜索。
1、外文资料原文 外文资料原文 ASP.NET Web Pages Overview You use ASP.NET Web pages as the programmable user interface for your Web application. An ASP.NET Web page presents information to the user in any browser or client device and implements application logic using server-side code. ASP.NET Web pages are: Based o
2、n Microsoft ASP.NET technology, in which code that runs on the server dynamically generates Web page output to the browser or client device. Compatible with any browser or mobile device. An ASP.NET Web page automatically renders the correct browser-compliant HTML for features such as styles, layout,
3、 and so on. Alternatively, you can design your ASP.NET Web pages to run on a specific browser such as Microsoft Internet Explorer 6 and take advantage of browser-specific features. Compatible with any language supported by the .NET common language runtime, including Microsoft Visual Basic, Microsoft
4、 Visual C#, Microsoft J#, and Microsoft JScript .NET. Built on the Microsoft .NET Framework. This provides all the benefits of the framework, including a managed environment, type safety, and inheritance. Flexible because you can add user-created and third party controls to them. Components of ASP.N
5、ET Web Pages In ASP.NET Web pages, user interface programming is divided into two pieces: the visual component and the logic. If you have worked with tools like Visual Basic and Visual C+ in the past, you will recognize this division between the visible portion of a page and the code behind the page
6、 that interacts 外文资料原文 with it. The visual element consists of a file containing static markup such as HTML or ASP.NET server controls or both. The ASP.NET Web page works as a container for the static text and controls you want to display. The logic for the ASP.NET Web page consists of code that you
7、 create to interact with the page. The code can reside either in a script block in the page or in a separate class. If the code is in a separate class file, this file is referred to as the code-behind file. The code in the code-behind file can be written in Visual Basic, Visual C#, Visual J#, or JSc
8、ript .NET. For more information about how ASP.NET Web pages are constructed, see ASP.NET Web Page Code Model. ASP.NET Web pages are compiled into a dynamic-link library (.dll) file. The first time a user browses to the .aspx page, ASP.NET automatically generates a .NET class file that represents the
9、 page and then compiles it. The .dll file runs on the server and dynamically produces the HTML output for your page. For more information on how ASP.NET applications are compiled, see ASP.NET Compilation Overview. What ASP.NET Web Pages Help You Accomplish Web application programming presents challe
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中设计图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 计算机专业 毕业设计 外文 翻译 asp net 网页 概述
