CodeBehind 2.9.2

Prefix Reserved
dotnet add package CodeBehind --version 2.9.2                
NuGet\Install-Package CodeBehind -Version 2.9.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeBehind" Version="2.9.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeBehind --version 2.9.2                
#r "nuget: CodeBehind, 2.9.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodeBehind as a Cake Addin
#addin nuget:?package=CodeBehind&version=2.9.2

// Install CodeBehind as a Cake Tool
#tool nuget:?package=CodeBehind&version=2.9.2                

CodeBehind Framework

CodeBehind is a modern back-end framework under ASP.NET Core. CodeBehind was developed by Elanat in 2023 and competes with Microsoft's default web frameworks (ASP.NET Core MVC and Razor Pages and Blazor). CodeBehind is an engineering masterpiece that simultaneously provides the possibility of development based on MVC, Model-View, Controller-View, only View and Web-Forms. The type of structure and naming in CodeBehind is a nostalgia that reminds of former Microsoft Web-Forms.

The aspx extension is the files of the view section in the CodeBehind framework and they supports standard syntax (<%=Standard%>) and Razor syntax (@Razor). This framework guarantees the separation of server-side codes from the design part (html) and there is no need to write server-side codes in the view.

Code Behind framework inherits every advantage of ASP.NET Core and gives it more simplicity, power, flexibility and has high serverside independence.

CodeBehind framework is an alternative to ASP.NET Core.

Why use CodeBehind?

  • Fast: The CodeBehind framework is faster than the default structure of cshtml pages in ASP.NET Core.
  • 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.

CodeBehind is .NET Diamond!

In every scenario, CodeBehind performs better than the default structure in ASP.NET Core.

Only view example

View section: aspx page (razor syntax)

@page
@{
    Random rand = new Random();
}

<div>
    <h1>Random value: @rand.Next(1000000)</h1>
</div>

View section: aspx page (standard syntax)

<%@ Page %>
<%
    Random rand = new Random();
%>

<div>
    <h1>Random value: <%=rand.Next(1000000)%></h1>
</div>

MVC example

View File: Default.aspx (razor syntax)

@page
@controller DefaultController
@model DefaultModel
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>@model.PageTitle</title>
</head>
<body>
    @model.BodyValue
</body>
</html>

View File: Default.aspx (standard syntax)

<%@ Page Controller="DefaultController" Model="DefaultModel" %>
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title><%=model.PageTitle%></title>
</head>
<body>
    <%=model.BodyValue%>
</body>
</html>

Model File: Default.aspx.Model.cs

using CodeBehind;

public partial class DefaultModel : CodeBehindModel
{
    public string PageTitle { get; set; }
    public string BodyValue { get; set; }
}

Controler File: Default.aspx.Controller.cs

using CodeBehind;

public partial class DefaultController : CodeBehindController
{
    public void PageLoad(HttpContext context)
    {
        DefaultModel model = new DefaultModel();
        model.PageTitle = "My Title";
        model.BodyValue = "HTML Body";
        View(model);
    }
}

CodeBehind Configure in ASP.NET Core

Program File: Program.cs

var builder = WebApplication.CreateBuilder(args);

var app = builder.Build();

SetCodeBehind.CodeBehindCompiler.Initialization();

app.UseCodeBehind();

app.Run();

Documents

Programming
API and applied methods
Information
Creating high-level systems
CodeBehind training video (On YouTube)

Download CodeBehind

Get from Elanat website:

https://elanat.net/category/download_code_behind/

Get from GitHub:

https://github.com/elanatframework/Code_behind/releases

Get from Nuget (We added CodeBehind in Nuget so that you can access it easily):

https://www.nuget.org/packages/CodeBehind

Ready project

Get ready project

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.9.2 47 7/24/2024
2.9.1 42 7/24/2024
2.9.0 59 7/22/2024
2.8.0 179 6/29/2024
2.7.1 240 6/16/2024
2.7.0 110 6/16/2024
2.6.0 120 6/10/2024
2.5.1 80 6/9/2024
2.5.0 191 5/20/2024
2.4.3 110 5/12/2024
2.4.2 151 3/31/2024
2.4.1 88 3/31/2024
2.4.0 158 3/5/2024
2.3.0 91 2/17/2024
2.2.0 118 1/26/2024
2.1.2 142 1/6/2024
2.1.1 98 1/5/2024
2.1.0 92 1/5/2024
2.0.0 150 12/23/2023
1.9.3 118 12/18/2023
1.9.2 127 12/9/2023
1.9.1 104 12/2/2023
1.9.0 119 11/30/2023
1.8.1 116 11/27/2023
1.8.0 111 11/26/2023
1.7.0 156 10/18/2023
1.6.1 111 10/18/2023
1.6.0 118 10/18/2023
1.5.2 131 9/28/2023
1.5.1 130 9/19/2023
1.5.0 113 9/13/2023
1.4.3 140 9/3/2023
1.4.2 142 8/30/2023
1.4.1 166 8/26/2023
1.4.0 119 8/23/2023
1.3.2 130 8/12/2023
1.3.1 125 8/12/2023
1.3.0 134 8/12/2023
1.2.0 147 7/24/2023
1.1.1 155 7/4/2023
1.1.0 145 7/3/2023
1.0.0 175 6/30/2023