How can I help you?
Getting Started with ASP.NET Core Spreadsheet Control
27 Apr 20263 minutes to read
This section briefly explains about how to include Syncfusion® ASP.NET Core Spreadsheet control in your ASP.NET Core application using Visual Studio.
Prerequisites
System requirements for Syncfusion® 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 33.2.3NOTE
Syncfusion® 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.EJ2Add stylesheet and script resources
Add the stylesheet and script references to the <head> section of the ~/Pages/Shared/_Layout.cshtml file, as shown in the following example.
<head>
...
<!-- Syncfusion ASP.NET Core controls styles -->
<link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/33.2.3/fluent.css" />
<!-- Syncfusion ASP.NET Core controls scripts -->
<script src="https://cdn.syncfusion.com/ej2/33.2.3/dist/ej2.min.js"></script>
</head>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-script> at the end of the <body> element in the ASP.NET Core application, as shown in the following example.
<body>
...
<!-- Syncfusion ASP.NET Core Script Manager -->
<ejs-scripts></ejs-scripts>
</body>Add Syncfusion® ASP.NET Core Spreadsheet control
Add the Syncfusion® ASP.NET Core Spreadsheet tag helper in ~/Pages/Index.cshtml 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
openUrlandsaveUrlendpoints 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 theOpen and Savesection.
Press Ctrl+F5 (Windows) or ⌘+F5 (macOS) to run the app. Then, the Syncfusion® ASP.NET Core Spreadsheet control will be rendered in the default web browser.
NOTE