i

ASP.Net A Complete Guide

ASP.NET Features

  • Cross-platform

  • High performance

  • Asynchronous via async/await

  • Dependency Injection

  • Cross-Site Request Forgery (CSRF) Protection

Code-behind mode – In this mode Design part is maintained in the separate file and code part will be maintained in a different file. It helps to maintain and debug the application.

State Management – It is a stateless protocol. Stateless means it does not require the server to retain session information about the communication of the request.

Caching – It means storing the information (It may be pages) in a temporary location. Frequently visited pages by the user are stored in a temporary location. It helps to optimize the performance of the application.