Home >Backend Development >C#.Net Tutorial >Recommended materials for Geek Academy ASP.NET video tutorials

Recommended materials for Geek Academy ASP.NET video tutorials

黄舟
黄舟Original
2018-05-15 14:37:223661browse

title="ASP.NET is a new generation of ASP. It is not compatible with classic ASP, but ASP.NET may include classic ASP. ASP.NET pages are compiled, which makes them run faster than classic ASP Fast. Has better language support, a large set of user controls and XML-based components, and integrated user authentication. When the browser requests an ASP.NET file, the ASP.NET engine reads the file, compiles and executes the script. file, and returns the result to the browser as an ordinary HTML page. "Geek Academy ASP.NET Video Tutorial" starts from the MVC model, and explains the advanced tutorials of C#, and takes you to understand the ORM tools officially provided by Microsoft. Entity Framework.

Recommended materials for Geek Academy ASP.NET video tutorials

## Course playback address: http://www.php .cn/course/284.html

The teacher’s teaching style:

The teacher’s lectures are simple and easy to understand, clearly organized, and analyzed layer by layer. The argumentation is rigorous and the structure is rigorous. The logical power of thinking is used to attract students' attention, and the classroom teaching process is controlled by reason. By listening to the teacher's lectures, students not only learn knowledge, but also receive training in thinking, and are also influenced by the teacher's rigorous academic attitude. Influence and infection

The more difficult point in this video is the overview of .NET Framework:

1. .Net framework

.Net framework provides a platform for developing and running applications and XML Web services written in different platforms and languages. .Net framework consists of common language runtime libraries, class libraries and ASP.NET. .NET is a component-based dynamic server page.

2. .NET Framework components:

(1) BCl (class library)

As the language of .NET All classes and interfaces are stored in the .NET Framework class library. The .NET Framework class library is composed of many namespaces that provide the objects needed to develop programs. All .NET languages ​​use the same set of base class libraries. , code written by programmers can be assembled with classes and methods in managed code written in other programming languages. The common language runtime defines data type standards so that instances of classes can be passed to methods written in different languages.

The .NET Framework class library is composed of many namespaces. Each namespace contains classes, structures, enumerations, delegates, and interfaces, which can be used in programs.

Classes in the .NET Framework class library follow published Common Language Specification (CLS) standards. Specifies language behavior for interacting with the common language runtime.

(2) Common Language Runtime (CLR)

CLR (CommonLanguageRuntime) common language runtime is the foundation for the entire .netframework construction and is the basis for realizing .Net cross-platform, cross-language, and code security and other core features.

The common language runtime can provide services for some tasks, such as integrating components developed in different languages, cross-language error handling, security processing, managing the storage and release of objects, etc.

(3)ASP.NET

ASP.NET is the latest version of Active Server Pages. ASP.NET is a Web development environment that can create applications written in any .NET language, including VB. ASP.NET makes Web development easier because it provides the same debugging support for Web forms and Web services as Windows applications.

3. Operating mechanism

The code written by programmers is generally called source code. You can program in either language, and a compiler compiles the source code into Microsoft Intermediate Language (MSIL), sometimes called an intermediate language (IL). When a program is compiled, the MSIL is converted into machine-specific native code by a just-in-time (JIT) compiler, which is part of the common language runtime.

The above is the detailed content of Recommended materials for Geek Academy ASP.NET video tutorials. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn