Server-Side Blazor Installation Tutorial

Environmental preparation

Make sure the system is installed

  • visual studio 2019 or visual studio 2022
  • net5 or net6
BootstrapBlazor Currently supported net5/net6

Create a project using the BootstrapBlazor Project Template extension

you can pass [portal] After downloading and installing the extension, create a project through the extension

Create a project with Visual Studio 1

Step 1. Create a project
1. Open Visual Studio 2022
2. Create a new project
3. choose Blazor App and click Next step, Choose a name and location for the project, then click Create
install
4. choose Blazor Server Appproject type, then click Create
Step 2. Add the BootstrapBlazor component to the existing project
1. pass nuget.org source search BootstrapBlazor
Right click on the project in the solution and select Manage Nuget Packages
dotnet add package BootstrapBlazor --version 7.4.4-beta01
install
2. Install the BootstrapBlazor package
install
3. Add stylesheet file
Add a theme style sheet to the host file
  • ~/Pages/_Host.cshtml .NET5
  • ~/Pages/_Layout.cshtml .NET6
<head>
    ...

    <!-- Need to reference BootstrapBlazor.FontAwesome package !-->
    <link href="_content/BootstrapBlazor.FontAwesome/css/font-awesome.min.css" rel="stylesheet">
    <link href="_content/BootstrapBlazor/css/bootstrap.blazor.bundle.min.css" rel="stylesheet">

    ...
    <link href="css/site.css" rel="stylesheet">
    <link href="BlazorApp1.styles.css" rel="stylesheet">
</head>
4. Add Javascript files
  • ~/Pages/_Host.cshtml .NET5
  • ~/Pages/_Layout.cshtml .NET6
<body>
    ...
    <!-- add code !-->
    <script src="_content/BootstrapBlazor/js/bootstrap.blazor.bundle.min.js"></script>
    ...
    <script src="_framework/blazor.server.js"></script>
</body>
5. Register the BootstrapBlazor service
  • Starup.cs .NET5
  • Program.cs .NET6
Startup.cs
namespace MyBlazorAppName
{
    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddServerSideBlazor();

            // Add this line of code
            services.AddBootstrapBlazor();
        }
    }
}
Program.cs
var builder = WebApplication.CreateBuilder(args);

// Add services to the container.
builder.Services.AddServerSideBlazor();

// Add this line of code
builder.Services.AddBootstrapBlazor();

var app = builder.Build();
//more code may be present here
6. Add namespace reference
Add the following to ~/_Imports.razor file so that Razor Components are recognized in the file
@using BootstrapBlazor.Components
7. Increase BootstrapBlazorRoot component to ~/App.razor in file
<BootstrapBlazorRoot>
    <Router AppAssembly="@typeof(App).Assembly">
        <Found Context="routeData">
            <PageTitle>Title</PageTitle>
            <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
            <FocusOnNavigate RouteData="@routeData" Selector="h1" />
        </Found>
        <NotFound>
            <PageTitle>Not found</PageTitle>
            <LayoutView Layout="@typeof(MainLayout)">
                <p> under development ...</p>
            </LayoutView>
        </NotFound>
    </Router>
</BootstrapBlazorRoot>
Step 3. Use components in the page
The last step is to use in the page BootstrapBlazor component and run it in the browser. E.g:
1. add one to the page Button button
<Button Color="Color.Primary" Icon="fa-solid fa-font-awesome" Text="test" />
2. exist Visual studio 2022 middle F5 run the application
install
img
Themes
Bootstrap
Motronic
Ant Design (完善中)
DevUI (制作中)
LayUI (完善中)
An error has occurred. This application may no longer respond until reloaded. Reload
Seems like the connection with the server has been lost. It can be due to poor or broken network. Please hang on while we're trying to reconnect...
Oh snap! Failed to reconnect with the server. This is typically caused by a longer network outage, or if the server has been taken down. You can try to reconnect, but if that does not work, you need to reload the page.
Oh man! The server rejected the attempt to reconnect. The only option now is to reload the page, but be prepared that it won't work, since this is typically caused by a failure on the server.
Bootstrap Blazor Component library updated to 7.4.4-beta01

Bootstrap Blazor at present has more than 120 components. This component is based on Bootstrap Blazor An enterprise-level component library that provides several types of common components such as layout, navigation, form, data, notification, icon, voice, etc. Each component has been carefully designed with modularity, responsiveness and excellent performance. Starting from more practical scenarios, meeting the needs of various scenarios, greatly reducing the time cost of developers, greatly shortening the development cycle, greatly improving development efficiency, and providing a set of General Rights Management System Example project。Bootstrap Blazor Products are maintained by a professional full-time technical team, with efficient response speed, diversified solutions, long-term support, and enterprise-level support. At present, it has been used in many well-known state-owned enterprises, and the project is running stably with a maximum of 1200 people online. On the right is the QR code of the Chinese Blazor QQ community with the largest number of people in China, welcome to scan and join the group.

component updated to 6.6.0 Change log [portal] If the component brings you convenience, please help to light up the project Star github gitee

QQGroup
QQ 795206915