国产精品婷婷久久久久久,国产精品美女久久久浪潮av,草草国产,人妻精品久久无码专区精东影业

asp.net 技術(shù)[外文翻譯].doc

約16頁(yè)DOC格式手機(jī)打開(kāi)展開(kāi)

asp.net 技術(shù)[外文翻譯],asp.net 技術(shù)[外文翻譯]包括中文翻譯和英文原文asp.net 技術(shù)1.構(gòu)建 asp.net 頁(yè)面asp.net 和asp.net結(jié)構(gòu)asp.net 是微軟.net framework整體的一部分, 它包含一組大量的編程用的類,滿足各種編程需要。 在下列的二個(gè)部分中, 你如何學(xué)會(huì) asp.net 很適合的放在.n...
編號(hào):10-100734大小:95.00K
分類: 論文>外文翻譯

內(nèi)容介紹

此文檔由會(huì)員 果酸 發(fā)布

ASP.NET 技術(shù)[外文翻譯]

包括中文翻譯和英文原文


ASP.NET 技術(shù)
1.構(gòu)建 ASP.NET 頁(yè)面

ASP.NET 和ASP.NET結(jié)構(gòu)
ASP.NET 是微軟.NET framework整體的一部分, 它包含一組大量的編程用的類,滿足各種編程需要。 在下列的二個(gè)部分中, 你如何學(xué)會(huì) ASP.NET 很適合的放在.NET framework, 和學(xué)會(huì)能在你的 ASP.NET 頁(yè)面中使用語(yǔ)言。

.NET類庫(kù)
假想你是微軟。 假想你必須支持大量的編程語(yǔ)言-比如 Visual Basic 、 JScript 和 C++. 這些編程語(yǔ)言的很多功能具有重疊性。 舉例來(lái)說(shuō),對(duì)于每一種語(yǔ)言,你必須包括存取文件系統(tǒng)、與數(shù)據(jù)庫(kù)協(xié)同工作和操作字符串的方法。
此外,這些語(yǔ)言包含相似的編程構(gòu)造。 每種語(yǔ)言,舉例來(lái)說(shuō),都能夠使用循環(huán)語(yǔ)句和條件語(yǔ)句。 即使用 Visual Basic 寫的條件語(yǔ)句的語(yǔ)法不與 用C++ 寫的不一樣,程序的功能也是相同的。

最后,大多數(shù)的編程語(yǔ)言有相似的數(shù)據(jù)變量類型。 以大多數(shù)的語(yǔ)言,你有設(shè)定字符串類型和整型數(shù)據(jù)類型的方法。舉例來(lái)說(shuō), 整型數(shù)據(jù)最大值和最小值可能依賴語(yǔ)言的種類,但是基本的數(shù)據(jù)類型是相同的。

對(duì)于多種語(yǔ)言來(lái)說(shuō)維持這一功能需要很大的工作量。 為什么繼續(xù)再創(chuàng)輪子? 對(duì)所有的語(yǔ)言創(chuàng)建這種功能一次,然后把這個(gè)功能用在每一種語(yǔ)言中豈不是更容易......

 

 

 

ASP.NET  Technique
1. Building ASP.NET Pages
ASP.NET and the .NET Framework
ASP.NET 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 ASP.NET fits within the .NET framework, and you learn about the languages you can use in your ASP.NET 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 ......