Getting Started with ASP.NET Core Spreadsheet Control

1 Jul 20262 minutes to read

This section briefly explains about how to include ASP.NET Core Spreadsheet Editor control in your ASP.NET Core application using Visual Studio.

Prerequisites

System requirements for ASP.NET Core controls

Create ASP.NET Core web application with Razor pages

Install Syncfusion® ASP.NET Core package in the application

Open the NuGet package manager UI in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), search for Syncfusion.EJ2.AspNet.Core and then install it. Alternatively, you can utilize the following package manager command to achieve the same.

Install-Package Syncfusion.EJ2.AspNet.Core -Version 34.1.29

NOTE

ASP.NET Core controls are available in nuget.org. Refer to NuGet packages topic to learn more about installing NuGet packages in various OS environments.

Add Syncfusion® ASP.NET Core Tag Helper

Open ~/Pages/_ViewImports.cshtml file and import the Syncfusion.EJ2 TagHelper.

@addTagHelper *, Syncfusion.EJ2

Add stylesheet and script resources

Add the stylesheet and script references at the end of the <head> section in the ~/Pages/Shared/_Layout.cshtml file, as shown in the following example.

<!-- Syncfusion ASP.NET Core controls styles -->
<link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/34.1.29fluent.css" />

<!-- Syncfusion ASP.NET Core controls scripts -->
<script src="https://cdn.syncfusion.com/ej2/34.1.29/dist/ej2.min.js"><script>

NOTE

To learn other ways to load themes or scripts (such as NPM packages or CRG), see the Themes topic and Adding Script Reference documentation.

Register Syncfusion® Script Manager

Register the script manager <ejs-scripts> at the end of the <body> section in the ASP.NET Core application, as shown in the following example.

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

Add ASP.NET Core Spreadsheet control

Add the ASP.NET Core Spreadsheet tag helper in ~/Pages/Index.cshtml page.

@page

<ejs-spreadsheet id="spreadsheet" openUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/open" saveUrl="https://document.syncfusion.com/web-services/spreadsheet-editor/api/spreadsheet/save"></ejs-spreadsheet>

Note: The openUrl and saveUrl endpoints used in this example are provided only for demonstration purposes. For development and production use, we strongly recommend configuring your own local or hosted web service for the Open and Save actions instead of relying on the online demo service. For more information, refer to the Open and Save section.

Press Ctrl+F5 (Windows) or +F5 (macOS) to run the app. Then, the ASP.NET Core Spreadsheet control will be rendered in the default web browser.

ASP.NET Core Spreadsheet control

NOTE

View Sample in GitHub. Looking for the full ASP.NET Core Spreadsheet component overview, features, pricing, and documentation? Visit the ASP.NET Core Spreadsheet Editor page.

See also