CsharpTags.AspNetCore 1.1.0-beta-3

This is a prerelease version of CsharpTags.AspNetCore.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package CsharpTags.AspNetCore --version 1.1.0-beta-3
                    
NuGet\Install-Package CsharpTags.AspNetCore -Version 1.1.0-beta-3
                    
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="CsharpTags.AspNetCore" Version="1.1.0-beta-3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CsharpTags.AspNetCore" Version="1.1.0-beta-3" />
                    
Directory.Packages.props
<PackageReference Include="CsharpTags.AspNetCore" />
                    
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 CsharpTags.AspNetCore --version 1.1.0-beta-3
                    
#r "nuget: CsharpTags.AspNetCore, 1.1.0-beta-3"
                    
#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 CsharpTags.AspNetCore@1.1.0-beta-3
                    
#: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=CsharpTags.AspNetCore&version=1.1.0-beta-3&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CsharpTags.AspNetCore&version=1.1.0-beta-3&prerelease
                    
Install as a Cake Tool

CsharpTags.Core

CI Publish NuGet

A type-safe HTML generation library for C# that provides a fluent, functional approach to building HTML documents with compile-time safety.

Targets: .NET 8.0 and .NET 10.0

Features

  • Type-safe HTML construction - Compile-time validation of HTML structure
  • Functional API - Fluent interface with immutable data structures
  • HTML Encoding - Automatic encoding of text content and attributes
  • Comprehensive HTML5 Support - Full coverage of HTML5 elements and attributes
  • ARIA Accessibility - Built-in support for ARIA attributes
  • CSS Unit Extensions - Type-safe CSS measurement units

Installation

<PackageReference Include="CsharpTags.Core" Version="1.0.0-beta-4" />

Quick Start

using CsharpTags.Core.Types;
using static CsharpTags.Core.Types.Prelude;

// Create a simple HTML document
var html = Html.New(
    Head.New(
        Title.New("My Page"),
        Meta.New(Charset << "UTF-8")
    ),
    Body.New(
        Div.New(
            Class << "container",
            H1.New("Welcome to CsharpTags"),
            P.New("This is a type-safe HTML generation example."),
            RawStr("<p>This is raw html</p>"),
            Button.New(
                Id << "submit-btn",
                Class << "btn btn-primary",
                Disabled_ << false
            ).New("Click Me")
        )
    )
);

string result = html.Render();

Asp Net Core

If you install

<PackageReference Include="CsharpTags.AspNetCore" Version="1.0.0-beta-4" />

And add the import

using CsharpTags.AspNetCore;

You will have access to the extension methods .ToActionResult() and .ToResult()

If you use minimal apis you can do something similar to that of Carter.

Carter

Having the CsharpTags.AspNetCore package you can register the filter Carter like this:

var group = app.MapGroup(string.Empty).AddEndpointFilter<HtmlElementEndpointFilter>();
group.MapCarter();

For anti forgery tokens run this

services.AddAntiforgery();
services.AddHttpContextAccessor();
services.AddHtmlTransformationAntiForgeryToken()

This is only going to work for HtmlElement that are processed by HtmlElementEndpointFilter

Core Concepts

HTML Elements

The library provides all standard HTML5 elements as static properties:

var div = Div.New("Hello World");
var link = A.New(Href << "/page.html", "Click here");
var image = Img.New(Src << "photo.jpg", Alt << "A photo");

Attributes

Type-safe attributes with proper encoding:

// String attributes (automatically encoded)
var div = Div.New(Class << "container<test>"); // becomes class="container&lt;test&gt;"

// Boolean attributes (presence-based)
var input = Input.New(Disabled_ << true); // becomes <input disabled />
var input2 = Input.New(Disabled_ << false); // becomes <input />

// Integer attributes
var input3 = Input.New(TabIndex << 5); // becomes tabindex="5"

Text Content

Automatic HTML encoding for safe text rendering:

var safeText = new Str { Value = "<script>alert('xss')</script>" };
// Renders as: &lt;script&gt;alert(&#39;xss&#39;)&lt;/script&gt;

Lists

Combine multiple elements:

var items = new HtmlElement[]
{
    Li.New("Item 1"),
    Li.New("Item 2"),
    Li.New("Item 3")
};

var list = Ul.New(items.ToHtml());

Usage

CSS Units

Type-safe CSS measurements using number extensions:

var width = 100.Px;        // "100px"
var height = 50.Pct;       // "50%"
var fontSize = 1.2.Rem;    // "1.2rem"
var rotation = 45.Deg;     // "45deg"

Custom Data Attributes

var element = Div.New(
    DataAttr("user-id") << "12345",
    DataAttr("role") << "admin"
);
// Renders as: <div data-user-id="12345" data-role="admin"></div>

ARIA Attributes

Full accessibility support:

var button = Button.New(
    Label << "Submit form",
    DescribedBy << "submit-help",
    Disabled << false,
    "Submit");

Building Complex Structures

var page = Html.New(
    Head.New(
        Title.New("Product Page"),
        Meta.New(Charset << "UTF-8"),
        Link.New(
            Rel << "stylesheet",
            Href << "/css/styles.css"
        )
    ),
    Body.New(
        Header.New(Class << "site-header").New(
            Nav.New(
                Ul.New(
                    Li.New(A.New(Href << "/", "Home")),
                    Li.New(A.New(Href << "/about", "About")),
                    Li.New(A.New(Href << "/contact", "Contact"))
                )
            )
        ),
        Main.New(
            Article.New(
                H1.New("Product Name"),
                Img.New(
                    Src << "product.jpg",
                    Alt << "Product image",
                    Width_ << 400,
                    Height_ << 300
                ),
                P.New("Product description..."),
                Button.New(
                    Class << "buy-btn",
                    Id << "purchase-button",
                    "Add to Cart")
            )
        )
    )
);

License

Copyright (c) Frairlyn Camilo Roque Suarez. All rights reserved.

Contributing

This library is designed with extensibility in mind. Feel free to submit issues and pull requests for additional HTML elements, attributes, or features.


Note: This is a beta release. API may change before version 1.0.0.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on CsharpTags.AspNetCore:

Package Downloads
CsharpTags.Carter

Seamless integration between CsharpTags and Carter for ASP.NET Core Minimal APIs

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0-beta-4 45 3/7/2026
1.1.0-beta-3 57 2/15/2026
1.1.0-beta-2 53 2/2/2026
1.1.0-beta-1 73 1/6/2026
1.0.0-beta-5 394 12/10/2025
1.0.0-beta-4 390 12/9/2025
1.0.0-beta-3 140 11/26/2025
1.0.0-beta-2 142 11/25/2025