CodeBehind 1.1.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package CodeBehind --version 1.1.1
                    
NuGet\Install-Package CodeBehind -Version 1.1.1
                    
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="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeBehind" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="CodeBehind" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CodeBehind --version 1.1.1
                    
#r "nuget: CodeBehind, 1.1.1"
                    
#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.
#:package [email protected]
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CodeBehind&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=CodeBehind&version=1.1.1
                    
Install as a Cake Tool

Code_behind

This library is a programming model based on the MVC structure, which provides the possibility of creating dynamic aspx files (similar to .NET standard) in .NET Core and has high serverside independence. <b>Soon we will expand this project so that in future versions you can experience both MVC and Code-Behind without coding in the view.</b>

aspx file in .NET Core

By using Code_behind, we will soon migrate Elanat framework from .NET Standard to .NET Core; during the migration, if we need to have simpler coding and need more maneuvers to do coding, we will add new features to Code_behind.

We added Code_behind in Nuget so that you can access it easily. You can use it in: https://www.nuget.org/packages/CodeBehind


View File: Default.aspx

<%@ Page Controller="YourProjectName.wwwroot.DefaultController" Model="YourProjectName.wwwroot.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;

namespace YourProjectName.wwwroot
{
    public partial class DefaultModel : CodeBehindModel
    {
        public string PageTitle { get; set; }
        public string BodyValue { get; set; }
    }
}

Controler File: Default.aspx.Controller.cs

using CodeBehind;

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

Program File: Program.cs

using CodeBehind;
using SetCodeBehind;

var builder = WebApplication.CreateBuilder(args);

var app = builder.Build();

// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
    app.UseExceptionHandler("/Error");
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}

+ CodeBehindCompiler.Initialization();

app.Run(async context =>
{
+    CodeBehindExecute execute = new CodeBehindExecute();
+    await context.Response.WriteAsync(execute.Run(context));
});

app.UseHttpsRedirection();
app.UseStaticFiles();

app.UseRouting();

app.Run();

You can use the Write method in the model and controller classes; the Write method adds a string value to the ResponseText attribute; you can also change the values of the ResponseText attribute by accessing them directly.

In the controller class, there is an attribute named IgnoreViewAndModel attribute, and if you activate the IgnoreViewAndModel attribute, it will ignore the values of model and view and you will only see a blank page; this feature allows you to display the values you need to the user and avoid multiple redirects and transfers.

To receive the information sent through the form, you can follow the instructions below:

public DefaultModel model = new DefaultModel();
public void PageLoad(HttpContext context)
{
    if (!string.IsNullOrEmpty(context.Request.Form["btn_Add"]))
        btn_Add_Click();

    View(model);
}

private void btn_Add_Click()
{
    model.PageTitle = "btn_Add Button Clicked";
}
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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
4.3.3 208 10/9/2025
4.3.2 169 10/4/2025
4.3.1 108 10/4/2025
4.3.0 183 10/1/2025
4.2.0 263 6/25/2025
4.1.1 248 5/1/2025
4.1.0 258 3/22/2025
4.0.0 414 1/29/2025
3.9.2 421 12/8/2024
3.9.1 242 12/3/2024
3.9.0 240 11/29/2024
3.8.0 367 11/10/2024
3.7.2 314 10/22/2024
3.7.1 219 10/19/2024
3.7.0 559 10/14/2024
3.6.1 437 9/30/2024
3.6.0 2,564 9/9/2024
3.5.0 230 9/4/2024
3.4.1 325 8/27/2024
3.4.0 241 8/27/2024
3.3.0 263 8/24/2024
3.2.2 257 8/23/2024
3.2.1 249 8/16/2024
3.2.0 234 8/15/2024
3.1.0 234 8/15/2024
3.0.0 324 7/30/2024
2.9.2 209 7/24/2024
2.9.1 211 7/24/2024
2.9.0 189 7/22/2024
2.8.0 315 6/29/2024
2.7.1 360 6/16/2024
2.7.0 241 6/16/2024
2.6.0 244 6/10/2024
2.5.1 199 6/9/2024
2.5.0 304 5/20/2024
2.4.3 253 5/12/2024
2.4.2 278 3/31/2024
2.4.1 208 3/31/2024
2.4.0 293 3/5/2024
2.3.0 206 2/17/2024
2.2.0 237 1/26/2024
2.1.2 246 1/6/2024
2.1.1 231 1/5/2024
2.1.0 197 1/5/2024
2.0.0 282 12/23/2023
1.9.3 230 12/18/2023
1.9.2 242 12/9/2023
1.9.1 201 12/2/2023
1.9.0 191 11/30/2023
1.8.1 184 11/27/2023
1.8.0 218 11/26/2023
1.7.0 264 10/18/2023
1.6.1 208 10/18/2023
1.6.0 217 10/18/2023
1.5.2 242 9/28/2023
1.5.1 220 9/19/2023
1.5.0 235 9/13/2023
1.4.3 243 9/3/2023
1.4.2 238 8/30/2023
1.4.1 286 8/26/2023
1.4.0 230 8/23/2023
1.3.2 269 8/12/2023
1.3.1 235 8/12/2023
1.3.0 240 8/12/2023
1.2.0 283 7/24/2023
1.1.1 266 7/4/2023
1.1.0 284 7/3/2023
1.0.0 335 6/30/2023