Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Spreadsheet

The DevExpress ASP.NET Core Spreadsheet control allows you to add spreadsheet functionality to an ASP.NET Core application. This includes Microsoft Excel compatibility (XLS, XLSX, XLSM, CSV, TEXT), formula editing, and data visualization (charts). You can configure each control with Razor C# or Razor VB syntax.

#Try DevExpress Spreadsheet In Your Project

Visit DevExpress.com to learn more about this product’s features, capabilities, and pricing options: ASP.NET Core Spreadsheet. To try DevExpress controls and libraries in your projects, download our fully-functional 30-day trial version.

Download: Free 30-Day Trial

Spreadsheet Overview

The following code adds a simple Spreadsheet to your page.

@(Html.DevExpress().Spreadsheet("spreadsheet")
    .Height("500px")
    .Width("100%")
    .DocumentRequestHandlerUrl(Url.Action("DxDocumentRequest"))
    .Open(documentPath)
)

See the following tutorials for instructions on how to integrate a Spreadsheet into an ASP.NET Core application:

Important

To use the Spreadsheet in a Razor Pages web app, it is necessary to configure the project.

See Also