Getting Started with ASP.NET Core ProgressBar Control

23 Jul 20263 minutes to read

This section briefly explains how to include the ASP.NET Core ProgressBar control in an ASP.NET Core application using Visual Studio.

Create an ASP.NET Core Web App with Razor Pages

Create an ASP.NET Core Web App using Visual Studio via Microsoft Templates or the Syncfusion® ASP.NET Core Extension. For detailed instructions, refer to the ASP.NET Core Web App Getting Started documentation.

Install the required ASP.NET Core packages

To add the ASP.NET Core ProgressBar control in the app, open the NuGet package manager in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), search for and install the Syncfusion.AspNetCore.ProgressBar and Syncfusion.AspNetCore.Themes packages. All Syncfusion ASP.NET Core packages are available in nuget.org. See the NuGet packages topic for details.

Alternatively, you can install the same packages using the Package Manager Console with the following commands.

Install-Package Syncfusion.AspNetCore.ProgressBar -Version 34.1.29
Install-Package Syncfusion.AspNetCore.Themes -Version 34.1.29

Add the ASP.NET Core Tag Helpers

After the packages are installed, open the ~/Pages/_ViewImports.cshtml file and import the Syncfusion.AspNetCore.Base and Syncfusion.AspNetCore.ProgressBar Tag Helpers.

@addTagHelper *, Syncfusion.AspNetCore.Base
@addTagHelper *, Syncfusion.AspNetCore.ProgressBar

Add stylesheet and script resources

The theme stylesheet and script can be referenced from Static Web Assets. Include the stylesheet and script references inside the <head> of ~/Pages/Shared/_Layout.cshtml.

<head>
    ...
    <!-- Syncfusion ASP.NET Core controls styles -->
    <link rel="stylesheet" href="_content/Syncfusion.AspNetCore.Themes/styles/fluent2.css" />
    <!-- Syncfusion ASP.NET Core ProgressBar control scripts -->
    <script src="_content/Syncfusion.AspNetCore.ProgressBar/scripts/sf-progressbar.min.js"></script>
</head>

Register the Script Manager

Open the ~/Pages/Shared/_Layout.cshtml file and register the script manager <ejs-scripts> at the end of the <body> element as follows.

<body>
    ...
    <!-- Syncfusion ASP.NET Core Script Manager -->
    <ejs-scripts></ejs-scripts>
</body>

Add ASP.NET Core ProgressBar control

Add the ASP.NET Core ProgressBar control in the ~/Pages/Index.cshtml file.

<ejs-progressbar id="container"></ejs-progressbar>

Run the application

Press Ctrl+F5 (Windows) or +F5 (macOS) to launch the application. The ASP.NET Core ProgressBar will render in your default web browser.

Change ProgressBar type

You can change the type of the ASP.NET Core ProgressBar by using the type property. By default, the Linear type ProgressBar will render.

<ejs-progressbar id="container" type='Linear' height='60' minimum="0" maximum="100"
                value=40 secondaryProgress='60'>
</ejs-progressbar>

ASP.NET Core ProgressBar Control

NOTE

View Sample in GitHub.

See also