BootstrapBlazor.TableExport 10.0.1

Prefix Reserved
dotnet add package BootstrapBlazor.TableExport --version 10.0.1
                    
NuGet\Install-Package BootstrapBlazor.TableExport -Version 10.0.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="BootstrapBlazor.TableExport" Version="10.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BootstrapBlazor.TableExport" Version="10.0.1" />
                    
Directory.Packages.props
<PackageReference Include="BootstrapBlazor.TableExport" />
                    
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 BootstrapBlazor.TableExport --version 10.0.1
                    
#r "nuget: BootstrapBlazor.TableExport, 10.0.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 BootstrapBlazor.TableExport@10.0.1
                    
#: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=BootstrapBlazor.TableExport&version=10.0.1
                    
Install as a Cake Addin
#tool nuget:?package=BootstrapBlazor.TableExport&version=10.0.1
                    
Install as a Cake Tool

Bootstrap Blazor Component

A set of enterprise-class UI components based on Bootstrap and Blazor.

License Github build Repo Size Commit Date codecov


Features

  • Enterprise-class UI designed for web applications.
  • A set of high-quality Blazor components out of the box.
  • Supports WebAssembly-based client-side and SignalR-based server-side UI event interaction.
  • Supports Progressive Web Applications (PWA).
  • Build with C#, a multi-paradigm static language for an efficient development experience.
  • .NET 6.0, with direct reference to the rich .NET ecosystem.
  • Seamless integration with existing ASP.NET Core MVC and Razor Pages projects.

Online Examples

website

Installation Guide

git clone https://github.com/dotnetcore/BootstrapBlazor.git
cd BootstrapBlazor/src/BootstrapBlazor.Server
dotnet run

Quick Installation Guide

Install Package

dotnet add package BootstrapBlazor

Add the following to _Imports.razor

@using BootstrapBlazor.Components

Add the following to the MainLayout.razor

<BootstrapBlazorRoot>
    @Body
</BootstrapBlazorRoot>

Add the following to your HTML head section

it's either index.html or _Layout.cshtml/_Host.cshtml/App.razor depending on whether you're running WebAssembly or Server

<link rel="stylesheet" href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css" />

Add the following script at the end of the body

<script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js"></script>

Add the following to the relevant sections of Program.cs

builder.Services.AddBootstrapBlazor();

Usage

<Display Value="@_text"></Display>
<Button Text="Button" OnClick="@ClickButton"></Button>

@code {
    private string? _text;
    private void ClickButton(MouseEventArgs e)
    {
        _text = DateTime.Now.ToString();
    }
}

Install CLI Template

  1. Install the template
dotnet new install Bootstrap.Blazor.Templates::*
  1. Create the Boilerplate project with the template
dotnet new bbapp
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  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 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 is compatible.  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 (7)

Showing the top 5 NuGet packages that depend on BootstrapBlazor.TableExport:

Package Downloads
ThingsGateway.Common

Package Description

HandeSoft.Blazor

Package Description

UnifiedBlazor.UI.BootstrapBlazor

UnifiedBlazor框架的BootstrapBlazor UI库

BootstrapBlazor.Shared

Package Description

EasyAdminBlazor

EasyAdminBlazor是一个基于 .NET 9 Blazor 技术开发的企业级应用系统,借助 BootstrapBlazor 组件库打造美观、易用的用户界面,采用 FreeSql 作为强大的对象关系映射(ORM)工具进行数据操作。系统功能丰富,涵盖组织架构、用户管理、权限控制等核心模块,同时支持多租户、多语言、在线聊天等特色功能。在多租户方面,具备灵活的数据库管理模式,可多个租户共享一个数据库,也能让某租户使用独立的数据库,以满足不同企业的多样化需求。个人接单利器!

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on BootstrapBlazor.TableExport:

Repository Stars
dotnetcore/BootstrapBlazor
Bootstrap Blazor is an enterprise-level UI component library based on Bootstrap and Blazor.
ThingsGateway/ThingsGateway
ThingsGateway is a cross-platform, high-performance gateway for edge data acquisition and IoT connectivity. Developed with .NET 8, it offers a suite of powerful tools, including advanced PLC communication libraries and debugging software.
densen2014/Blazor100
Blazor入门100天
Version Downloads Last Updated
10.0.1 5,141 11/19/2025
10.0.0 1,877 11/12/2025
9.2.7 32,226 10/2/2025
9.2.6 83,166 6/23/2025
9.2.5 34,749 5/24/2025
9.2.4 20,702 4/24/2025
9.2.3 2,029 4/18/2025
9.2.2 21,728 3/26/2025
9.2.1 32,098 2/17/2025
9.1.1 15,134 1/21/2025
9.1.0 3,844 1/2/2025
9.0.1 2,206 12/25/2024
9.0.0 9,254 11/13/2024
9.0.0-beta02 130 11/7/2024
9.0.0-beta01 463 11/1/2024
8.4.0 5,700 10/16/2024
8.3.0 1,175 10/8/2024
8.2.1 8,028 8/26/2024
8.2.0 1,350 8/21/2024
8.1.0 12,679 5/4/2024
8.1.0-beta02 191 5/1/2024
8.1.0-beta01 137 5/1/2024
8.0.7 963 4/17/2024
8.0.6 219 4/17/2024
8.0.5 316 4/13/2024
8.0.4 221 4/12/2024
8.0.4-beta01 204 4/9/2024
8.0.3 7,836 12/27/2023
8.0.2 518 12/27/2023
8.0.1 470 12/15/2023
8.0.1-beta02 154 12/15/2023
8.0.1-beta01 260 12/11/2023
8.0.0 6,637 11/15/2023
7.6.1 1,937 10/16/2023
7.6.0 605 9/28/2023
7.5.0 6,286 7/1/2023
7.4.0 3,057 5/20/2023
7.3.0 2,291 3/7/2023
7.2.0 1,886 1/6/2023
7.1.1 1,115 12/6/2022
7.1.0 668 11/30/2022
7.0.0 5,858 11/10/2022
6.0.0 14,236 11/13/2021
5.3.0 1,340 9/25/2021
5.2.0 618 9/20/2021
5.1.1 1,104 8/3/2021
5.1.0 510 8/3/2021
5.0.21 1,209 6/10/2021
5.0.20 638 6/3/2021
5.0.19 542 6/3/2021
5.0.18 1,487 4/22/2021
5.0.17 584 4/15/2021
5.0.16 932 4/8/2021
5.0.15 601 4/5/2021
5.0.14 526 4/5/2021
5.0.13 577 4/1/2021
5.0.12 679 3/24/2021
5.0.11 718 3/18/2021
5.0.10 556 3/18/2021
5.0.9 707 3/10/2021
5.0.8 765 3/4/2021
5.0.8-beta03 412 3/3/2021
5.0.8-beta02 416 3/2/2021
5.0.8-beta01 394 3/2/2021
5.0.7 604 2/21/2021
5.0.6 938 2/10/2021
5.0.5 774 1/28/2021
5.0.4 941 1/14/2021
5.0.3 789 1/3/2021
5.0.2 643 12/26/2020
5.0.1 735 12/23/2020
5.0.0 1,132 11/12/2020
3.1.2 709 11/12/2020
3.1.1 1,153 11/10/2020
3.1.1-beta02 584 10/31/2020
3.1.1-beta01 650 10/30/2020
3.1.0 758 10/30/2020
3.1.0-beta02 507 10/28/2020
3.1.0-beta01 511 10/28/2020