Home  >  Article  >  aspx what file

aspx what file

coldplay.xixi
coldplay.xixiOriginal
2020-12-02 11:41:2114622browse

The aspx file is Microsoft's dynamic web page file that runs on the server side, unlike static html files. It can get dynamic pages after parsing and executing through IIS. It is a new network programming method introduced by Microsoft. , rather than a simple upgrade of asp.

aspx what file

<strong>aspx</strong> file is Microsoft's dynamic web page file that runs on the server side, unlike static html document. It can get dynamic pages after parsing and executing through IIS. It is a new network programming method introduced by Microsoft, rather than a simple upgrade of asp, because its programming method is very different from asp. It relies on the server on the server side. Compiled and executed program code,

ASP uses a script language. Every time a request is made, the server calls the script parsing engine to parse and execute the program code. ASP.NET can be written in multiple languages, and is Fully compiled and executed, it is faster than ASP, and it is not just a matter of speed, it has many advantages.

asp files are in text form and can be opened with any text editor, such as notepad, editplus, dreamwaver, frontpage

But it is best to use Visual Studio.Net to edit aspx files .

aspx is .net technology, its security is relatively high, it and java are two different categories, each has its own strengths.

The difference between asp and aspx

  • .asp is the file suffix name of asp

  • .aspx is asp. net file suffix

  • To be more straightforward, this kind of file is a dynamic web page~

  • asp.net is also called asp, which is dynamic A design language for network programming.

  • The so-called dynamic network is like bbs message board, chat room, etc.```

  • can be written in asp, php, jsp.net

  • Then asp is the predecessor of asp.net.

  • asp.net is more efficient than asp. Visual studio.net supports writing, the program structure is clear, and development is simple (mainly because its controls are powerful). The security is also high (other programs must be Running on the server side)

Features:

  • ASP.NET is programming based on the common language runtime Framework that can be used to build powerful web applications on the server. ASP.NET offers several important advantages over previous web development models:

  • Enhanced performance. ASP.NET is compiled common language runtime code that runs on the server. Unlike its interpreted predecessors, ASP.NET can take advantage of early binding, just-in-time compilation, native optimizations, and out-of-box caching services. This equates to significant performance improvements before even a line of code is written.

  • World-class tool support. The ASP.NET framework complements the extensive toolbox and designers found in the Visual Studio integrated development environment. WYSIWYG editing, drag-and-drop server controls, and automated deployment are just a few of the features this powerful tool has to offer.

  • Power and flexibility. Because ASP.NET is based on the common language runtime, web application developers can take advantage of the power and flexibility of the entire platform. .NET Framework class libraries, messaging and data access solutions are all seamlessly accessible from the web. ASP.NET is also language-agnostic, so you can choose the language that best suits your application, or split your application across multiple languages. In addition, the interactivity of the common language runtime ensures that existing investments in COM-based development are preserved when migrating to ASP.NET.

The above is the detailed content of aspx what file. 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