Introduction to the meanings of the suffixes in ASP.NET

  • 2020-05-12 02:30:05
  • OfStack

1 .Global.asax

The file is the central point of the ASP.NET application. It provides an infinite number of events to handle different application-level tasks, such as user authentication, application startup, and handling user sessions. You should be familiar with this optional file so you can build a robust ASP.NET application.

2. sln:

Solution file, which provides the information needed for the solution explorer to display the graphical interface for the management file. 3. csproj:

Project files, creating information about references, data connections, folders, and files needed by the application. 4. aspx:

The Web forms page consists of two parts: the visual elements (HTML, server controls, and static text) and the programming logic for the page. Visual Studio stores these two components in a separate file. The visual element is created in the.aspx file. 5. ascx:

The ASP.NET user control (also known as "pagelets") was developed as an Web page that encapsulates specific functions and behaviors that are to be used on various pages of the Web application. A user control contains a combination of HTML, code, and other Web or user controls and is saved in its own file format on the Web server with the extension *.ascx. The default configuration in ASP.NET does not allow Web clients to access these files via URL, but other pages on the site can integrate the functionality contained in these files. 6. aspx. cs:

The programming logic for the Web forms page resides in a separate class file called the code hidden class file (.aspx.cs). 7. cs:

Class module code file. Code for the business logic processing layer. 8. asax:

The Global.asax file (also known as the ASP.NET application file) is an optional file that contains the code to respond to application-level events raised by the ASP.NET or HTTP modules. 9. config:

The Web.config files provide configuration information to the directory where they reside and to all subdirectories. 10. aspx. resx /. resx:

A resource file, which is any non-executable data that is logically deployed by the application. By storing the data in a resource file, you can change the data without having to recompile the entire application. 11. XSD:

A species of XML schema. From DTD,XDR to XSD12.pdb:

The PDB (program database) file holds debugging and project status information so that you can incrementally link the debug configuration of your program. .suo: solution user options, recording all options that will be associated with the solution so that each time it is opened, it contains the custom Settings you made. 13. asmx:

The asmx file contains the WebService processing instructions and is used as the addressable entry point for XML Web services 14.vsdisco

The (project discovery) file is based on the XML file, which contains links to resources that provide discovery information for the Web service (URL). 15. htc:

1 HTML file containing the script and the 1 series HTC specific elements that define the component.htc provides the mechanism for implement components in the script


Related articles: