Example T827756
Visible to All Users

Dashboard for ASP.NET Core - Get Started

The example contains the source code of the .NET 6 project created in the step-by-step tutorial: Create an ASP.NET Core Dashboard Application.

Restore npm packages to launch the project. Note that the script version on the client must match the version of libraries on the server.

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

WebDashboardAspNetCore/Program.cs
C#
using DevExpress.AspNetCore; using DevExpress.DashboardAspNetCore; using DevExpress.DashboardWeb; using Microsoft.Extensions.FileProviders; var builder = WebApplication.CreateBuilder(args); IFileProvider? fileProvider = builder.Environment.ContentRootFileProvider; IConfiguration? configuration = builder.Configuration; // Add services to the container. builder.Services.AddRazorPages(); builder.Services.AddDevExpressControls(); builder.Services.AddScoped<DashboardConfigurator>((IServiceProvider serviceProvider) => { DashboardConfigurator configurator = new DashboardConfigurator(); configurator.SetDashboardStorage(new DashboardFileStorage(fileProvider.GetFileInfo("Data/Dashboards").PhysicalPath)); configurator.SetConnectionStringsProvider(new DashboardConnectionStringsProvider(configuration)); return configurator; }); 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(); } app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseDevExpressControls(); app.MapDashboardRoute("api/dashboard", "DefaultDashboard"); app.UseRouting(); app.UseAuthorization(); app.MapRazorPages(); app.Run();
WebDashboardAspNetCore/Pages/Index.cshtml
Razor
@page @{ Layout = null; } <!-- Add the following namespace usages: --> @using DevExpress.AspNetCore @using DevExpress.DashboardWeb @using DevExpress.DashboardAspNetCore <!DOCTYPE html> <html lang="en"> <head> <!-- Add bundled resources. --> <link href="~/css/site.min.css" rel="stylesheet" /> <link href="~/css/ace/ace.bundle.css" rel="stylesheet" /> <script src="~/js/site.min.js"></script> </head> <body> <!-- Add the Web Dashboard with the "clientDashboardControl1" name to a View, specify its size, and set the Working Mode to Designer. --> <div style="position: absolute; left:0;top:0;right:0;bottom:0;"> @(Html.DevExpress().Dashboard("clientDashboardControl1") .ControllerName("DefaultDashboard") .WorkingMode(WorkingMode.Designer) .Width("100%") .Height("100%") ) </div> </body> </html>

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.