DEV Community

Play Button Pause Button
Elanat Framework
Elanat Framework

Posted on

Video - Caching HTML Tags Using WebForms Core Technology

There are usually static sections in websites and web applications that are constantly requested from the server. Normally, trying to cache these tags is difficult. In this Video, we want to teach the idea of ​​caching static tags (header, footer, left menu, right menu, style and etc) using WebForms Core technology. Cache has many uses in WebForms Core. In this tutorial, we want to cache the static tags of a web page completely in the user's browser to get these tags from the server only once. Caching static tags significantly reduces bandwidth.

Why use CodeBehind?

  • Fast: The CodeBehind framework is faster than Microsoft's default web frameworks (ASP.NET Core MVC and Razor Pages).
  • Simple: Developing with CodeBehind is very simple. You can use MVC pattern or Model-View or Controller-View or only View.
  • Modular: It is modular. Just copy the new project files, including DLL and aspx, into the current active project.
  • Get output: You can call the output of the aspx page in another aspx page and modify its output.
  • Under .NET Core: Your project will still be under ASP.NET Core and you will benefit from all the benefits of .NET Core.
  • Code-Behind: Code-Behind pattern will be fully respected.
  • Modern: CodeBehind is a modern framework with revolutionary ideas.
  • Understandable: View is preferable to Controller and there is no need to set Controllers in route.
  • Adaptable: The CodeBehind framework can even be used with Razor Pages and ASP.NET Core MVC.
  • Loose coupling: The different components of CodeBehind work independently of each other.
  • RAD: Everything is automated in CodeBehind framework, just focus on development.
  • New Web-Forms: Supports a new and unique approach modeled after Microsoft's former Web-Forms.

CodeBehind Framework is an alternative to ASP.NET Core.

GitHub repository:
https://github.com/elanatframework/Code_behind

Videos of WebForms Core functionality:
https://www.youtube.com/watch?v=zl4sxjIkBwU
https://www.youtube.com/watch?v=ZuMMApM00xM

Music by Bensound
License code: XUFBDO5BBKTSYS28

Top comments (0)