Syncfusion.XlsIO.AspNet.Mvc4 19.3.0.43

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.XlsIO.AspNet.Mvc4 --version 19.3.0.43
NuGet\Install-Package Syncfusion.XlsIO.AspNet.Mvc4 -Version 19.3.0.43
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.XlsIO.AspNet.Mvc4" Version="19.3.0.43" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.XlsIO.AspNet.Mvc4 --version 19.3.0.43
#r "nuget: Syncfusion.XlsIO.AspNet.Mvc4, 19.3.0.43"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Syncfusion.XlsIO.AspNet.Mvc4 as a Cake Addin
#addin nuget:?package=Syncfusion.XlsIO.AspNet.Mvc4&version=19.3.0.43

// Install Syncfusion.XlsIO.AspNet.Mvc4 as a Cake Tool
#tool nuget:?package=Syncfusion.XlsIO.AspNet.Mvc4&version=19.3.0.43

Syncfusion Essential XlsIO is a high-performance and feature-rich .NET Excel library to work with Microsoft Excel documents. This Excel library allows you to create, read, and edit Microsoft Excel files in ASP.NET MVC application. It offers APIs to support Microsoft Excel equivalent features along with conversion APIs to easily convert Excel files to PDF, images, and more.

Key features

Getting Started

Installation commands

  • Simply run Install-Package Syncfusion.XlsIO.AspNet.Mvc4 from the Package Manager Console in Visual Studio to fetch the NuGet package.
  • If you already have Syncfusion.XlsIO.AspNet.Mvc4 for .NET and want to upgrade the version, please run Syncfusion.XlsIO.AspNet.Mvc4 to get the latest version.
  • You can run the following snippets in your environment to see how Syncfusion.XlsIO.AspNet.Mvc4 works.

Create an Excel document using XlsIO

The following code snippet explains how to create an Excel document.

//Initialize ExcelEngine.
using (ExcelEngine excelEngine = new ExcelEngine())
{
    //Initialize IApplication.
	IApplication application = excelEngine.Excel;
	//Set the default version as Xlsx.
	application.DefaultVersion = ExcelVersion.Xlsx;
    //Create a new workbook with one worksheet.
	IWorkbook workbook = application.Workbooks.Create(1);
	//Get the worksheet into IWorksheet.
	IWorksheet worksheet = workbook.Worksheets[0];
	//Set a value to Excel cell.
	worksheet.Range["A1"].Value = "Hello World";
    //Save the Excel document.
	workbook.SaveAs("Output.xlsx", HttpContext.ApplicationInstance.Response, ExcelDownloadType.Open);
}

Read an Excel document using XlsIO

The following code snippet explains how to read an Excel document.

//Initialize ExcelEngine.
using (ExcelEngine excelEngine = new ExcelEngine())
{
    //Initialize IApplication.
    IApplication application = excelEngine.Excel;
	//Set the default version as Xlsx.
    application.DefaultVersion = ExcelVersion.Xlsx;
    //Load an existing workbook into IWorkbook.
    IWorkbook workbook = application.Workbooks.Open(Server.MapPath("App_Data/Sample.xlsx"));
    //Save the Excel document.
	workbook.SaveAs("Output.xlsx", HttpContext.ApplicationInstance.Response, ExcelDownloadType.Open);
}

File Formats supported by XlsIO

Syncfusion Essential XlsIO supports .xls, .xlsx, .xlsm, .xltm, .xltx, .xml, .csv, .txt and .ods file formats.

Compatible Microsoft Excel Versions

  • Microsoft Excel 97-2003
  • Microsoft Excel 2007
  • Microsoft Excel 2010
  • Microsoft Excel 2013
  • Microsoft Excel 2016
  • Microsoft Excel 2019

Resources

Support and feedback

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a licnense here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license, you can purchase one here or start a free 30-day trial here.


sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Syncfusion.XlsIO.AspNet.Mvc4:

Package Downloads
Syncfusion.AspNet.Mvc4

Syncfusion UI components for ASP.NET MVC (Essential JS 1) contain the runtime MVC #MVCVersion# assemblies for building line-of-business applications. They contain more than 70 HTML helpers, including popular controls such as data grid, chart, Gantt, diagram, spreadsheet, schedule, and pivot grid to build server-side dynamic websites based on Microsoft's ASP.NET MVC Framework. Key features: • Support for all the major browsers: IE8+, Microsoft Edge, Chrome 17+, Firefox 22+, Safari 5+, and Opera 12+. • Support for globalization and localization. • Seventeen built-in themes including Material, Office 365, Bootstrap, and High contrast themes. • Built-in compliance with the WAI-ARIA specification, which ensures the components work properly in assistive technologies. • User-interactive widget mode sustainable in a browser’s local storage, which helps to maintain the state for each component. • Support for strongly-typed HTML helpers that use lambda expressions to refer to models. • Seamless cooperation with jQuery validation to perform validation on form controls like numeric, masked text box, check box, RTE, and drop-down list. • Support for RequireJS in all its components, which implements AMD specifications. So users can load the users-specified scripts and modules into a page. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/aspnetmvc/?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/general?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/?utm_source=nuget&utm_medium=listing). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products?utm_source=nuget&utm_medium=listing or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials?utm_source=nuget&utm_medium=listing).

Syncfusion.AspNet.Mvc4.Pivot The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The package contains the following Syncfusion pivot controls for ASP.NET MVC platform. List of controls: PivotClient: Syncfusion’s pivot client control provides support to show OLAP and relational data in both cross-tabulated and graphical formats along with rich UI options to slice and dice the reports on the fly. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls/pivot-client?utm_source=nuget&utm_medium=listing PivotGrid: Syncfusion’s pivot grid control allows you to read, process, and display OLAP and relational data in a cross-tabulated form. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls/pivot-grid?utm_source=nuget&utm_medium=listing PivotChart: Syncfusion’s pivot chart control presents a graphical representation of OLAP and relational data along with the abilities to drill up/down. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls/pivot-chart?utm_source=nuget&utm_medium=listing PivotTreeMap: Syncfusion’s pivot tree map helps visualize the OLAP data in the form of nested nodes in hierarchical order with the ability to drill up and down. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls/pivot-treemap?utm_source=nuget&utm_medium=listing PivotGauge: Syncfusion’s pivot gauge helps to plot values against goals with the help of a scale, pointers, ticks, etc., within a defined frame type. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls/pivot-gauge?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/?utm_source=nuget&utm_medium=listing). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products?utm_source=nuget&utm_medium=listing or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials?utm_source=nuget&utm_medium=listing).

Syncfusion.ExcelToPdfConverter.AspNet.Mvc4 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Excel-to-PDF converter is a .NET library that is used to convert Excel documents into PDF in any ASP.NET MVC application without Microsoft Office dependencies.

Syncfusion.ExcelChartToImageConverter.AspNet.Mvc4 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion ExcelChartToImageConverter is a .NET class library for converting Excel chart to image in any ASP.NET MVC application without using Microsoft Office dependencies. This package is a supporting package for Syncfusion’s Excel library..

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.40 5 4/15/2024
25.1.39 125 4/8/2024
25.1.38 139 4/1/2024
25.1.37 130 3/26/2024
25.1.35 210 3/15/2024
24.2.9 302 3/4/2024
24.2.8 313 2/26/2024
24.2.7 413 2/19/2024
24.2.6 363 2/14/2024
24.2.5 441 2/12/2024
24.2.4 461 2/5/2024
24.2.3 438 1/31/2024
24.1.47 463 1/22/2024
24.1.46 726 1/16/2024
24.1.45 605 1/8/2024
24.1.44 579 1/2/2024
24.1.43 641 12/27/2023
24.1.41 704 12/18/2023
23.2.7 817 12/6/2023
23.2.6 753 11/28/2023
23.2.5 704 11/23/2023
23.2.4 747 11/20/2023
23.1.44 788 11/6/2023
23.1.43 807 10/30/2023
23.1.42 787 10/23/2023
23.1.41 767 10/16/2023
23.1.40 850 10/10/2023
23.1.39 856 10/4/2023
23.1.38 916 9/26/2023
23.1.36 887 9/15/2023
22.2.12 990 9/5/2023
22.2.11 1,021 8/28/2023
22.2.10 1,001 8/22/2023
22.2.9 1,196 8/14/2023
22.2.8 1,142 8/7/2023
22.2.7 1,156 8/2/2023
22.2.5 1,122 7/27/2023
22.1.39 1,131 7/18/2023
22.1.38 1,182 7/11/2023
22.1.37 1,181 7/3/2023
22.1.36 1,213 6/28/2023
22.1.34 1,207 6/21/2023
21.2.10 1,228 6/13/2023
21.2.9 1,201 6/6/2023
21.2.8 1,251 5/30/2023
21.2.6 1,284 5/22/2023
21.2.5 1,329 5/15/2023
21.2.4 1,342 5/9/2023
21.2.3 1,320 5/3/2023
21.1.41 1,323 4/19/2023
21.1.39 1,386 4/10/2023
21.1.38 1,455 4/3/2023
21.1.37 1,465 3/29/2023
21.1.35 1,481 3/23/2023
20.4.0.54 1,989 3/13/2023
20.4.0.53 1,501 3/7/2023
20.4.0.52 1,470 2/28/2023
20.4.0.51 1,525 2/21/2023
20.4.0.50 1,531 2/14/2023
20.4.0.49 1,606 2/7/2023
20.4.0.48 1,649 2/1/2023
20.4.0.44 3,512 1/18/2023
20.4.0.43 3,530 1/10/2023
20.4.0.42 3,470 1/4/2023
20.4.0.41 3,491 12/29/2022
20.4.0.40 3,445 12/28/2022
20.4.0.38 3,584 12/21/2022
20.3.0.61 3,494 12/12/2022
20.3.0.60 3,436 12/6/2022
20.3.0.59 3,592 11/29/2022
20.3.0.58 3,709 11/22/2022
20.3.0.57 3,684 11/15/2022
20.3.0.56 3,792 11/8/2022
20.3.0.52 3,957 10/27/2022
20.3.0.50 4,042 10/18/2022
20.3.0.49 4,296 10/11/2022
20.3.0.48 4,144 10/5/2022
20.3.0.47 4,310 9/29/2022
20.2.0.50 4,366 9/20/2022
20.2.0.49 4,326 9/13/2022
20.2.0.48 4,276 9/6/2022
20.2.0.46 4,276 8/30/2022
20.2.0.45 4,329 8/23/2022
20.2.0.44 4,275 8/16/2022
20.2.0.43 4,203 8/8/2022
20.2.0.40 4,228 7/26/2022
20.2.0.39 4,197 7/19/2022
20.2.0.38 4,311 7/12/2022
20.2.0.36 4,505 6/30/2022
20.1.0.61 4,244 6/20/2022
20.1.0.60 4,293 6/14/2022
20.1.0.59 4,355 6/6/2022
20.1.0.58 4,301 5/31/2022
20.1.0.57 4,421 5/23/2022
20.1.0.56 4,344 5/17/2022
20.1.0.55 4,322 5/12/2022
20.1.0.52 4,241 5/3/2022
20.1.0.51 4,377 4/26/2022
20.1.0.50 4,386 4/19/2022
20.1.0.48 4,333 4/12/2022
20.1.0.47 4,417 4/4/2022
19.4.0.56 4,366 3/14/2022
19.4.0.55 4,715 3/8/2022
19.4.0.54 4,302 2/28/2022
19.4.0.53 4,474 2/22/2022
19.4.0.52 4,334 2/15/2022
19.4.0.50 4,363 2/8/2022
19.4.0.48 4,358 1/31/2022
19.4.0.47 4,605 1/25/2022
19.4.0.43 4,323 1/18/2022
19.4.0.42 4,066 1/11/2022
19.4.0.41 3,521 1/4/2022
19.4.0.40 3,559 12/28/2021
19.4.0.38 3,538 12/17/2021
19.3.0.59 3,526 12/14/2021
19.3.0.57 3,524 12/7/2021
19.3.0.56 4,151 11/29/2021
19.3.0.55 3,552 11/23/2021
19.3.0.54 3,610 11/17/2021
19.3.0.53 3,739 11/12/2021
19.3.0.48 3,810 11/3/2021
19.3.0.47 3,781 10/26/2021
19.3.0.46 3,757 10/19/2021
19.3.0.45 3,834 10/12/2021
19.3.0.44 3,851 10/5/2021
19.3.0.43 3,738 9/30/2021
19.2.0.62 3,799 9/13/2021
19.2.0.60 3,857 9/7/2021
19.2.0.59 3,952 8/30/2021
19.2.0.57 3,966 8/24/2021
19.2.0.56 3,975 8/17/2021
19.2.0.55 3,993 8/11/2021
19.2.0.51 4,098 8/2/2021
19.2.0.49 4,073 7/26/2021
19.2.0.48 4,074 7/19/2021
19.2.0.47 4,058 7/13/2021
19.2.0.46 4,100 7/6/2021
19.2.0.44 4,061 6/30/2021
19.1.0.69 4,184 6/14/2021
19.1.0.67 3,864 6/7/2021
19.1.0.66 3,878 5/31/2021
19.1.0.65 3,809 5/24/2021
19.1.0.64 3,831 5/19/2021
19.1.0.63 3,808 5/13/2021
19.1.0.59 3,887 5/3/2021
19.1.0.58 3,906 4/26/2021
19.1.0.57 3,890 4/20/2021
19.1.0.56 3,928 4/12/2021
19.1.0.55 5,088 4/6/2021
19.1.0.54 3,983 3/30/2021
18.4.0.49 4,051 3/22/2021
18.4.0.48 3,932 3/16/2021
18.4.0.47 9,629 3/9/2021
18.4.0.46 3,861 3/2/2021
18.4.0.44 3,970 2/23/2021
18.4.0.43 3,903 2/15/2021
18.4.0.42 3,934 2/9/2021
18.4.0.41 3,993 2/2/2021
18.4.0.39 4,006 1/28/2021
18.4.0.35 3,914 1/19/2021
18.4.0.34 3,797 1/12/2021
18.4.0.33 3,874 1/4/2021
18.4.0.32 4,046 12/30/2020
18.4.0.31 4,000 12/22/2020
18.4.0.30 4,110 12/17/2020
18.3.0.53 3,922 12/8/2020
18.3.0.52 3,926 11/30/2020
18.3.0.51 3,998 11/23/2020
18.3.0.50 3,990 11/17/2020
18.3.0.48 4,103 11/10/2020
18.3.0.47 4,103 11/5/2020
18.3.0.44 4,526 10/27/2020
18.3.0.42 4,219 10/20/2020
18.3.0.40 4,190 10/12/2020
18.3.0.38 4,207 10/7/2020
18.3.0.35 4,059 10/1/2020
18.2.0.59 4,244 9/22/2020
18.2.0.58 4,128 9/15/2020
18.2.0.57 4,117 9/8/2020
18.2.0.56 4,168 9/1/2020
18.2.0.55 4,248 8/25/2020
18.2.0.54 4,106 8/18/2020
18.2.0.48 4,281 8/4/2020
18.2.0.47 4,172 7/28/2020
18.2.0.46 4,141 7/21/2020
18.2.0.45 4,149 7/14/2020
18.2.0.44 8,524 7/6/2020
18.1.0.59 4,318 6/23/2020
18.1.0.57 4,261 6/16/2020
18.1.0.56 4,217 6/9/2020
18.1.0.55 4,109 6/2/2020
18.1.0.54 4,201 5/27/2020
18.1.0.53 4,270 5/19/2020
18.1.0.52 4,248 5/13/2020
18.1.0.48 4,226 5/5/2020
18.1.0.46 4,307 4/28/2020
18.1.0.45 4,233 4/21/2020
18.1.0.44 4,114 4/14/2020
18.1.0.43 4,309 4/7/2020
18.1.0.42 4,259 4/1/2020
18.1.0.36-beta 3,272 3/19/2020
17.4.0.55 4,308 3/10/2020
17.4.0.53 4,224 3/3/2020
17.4.0.51 4,277 2/25/2020
17.4.0.50 4,249 2/18/2020
17.4.0.49 4,124 2/11/2020
17.4.0.47 3,724 2/5/2020
17.4.0.46 3,759 1/30/2020
17.4.0.44 3,681 1/21/2020
17.4.0.43 3,661 1/14/2020
17.4.0.41 3,690 1/7/2020
17.4.0.40 3,689 12/24/2019
17.4.0.39 4,210 12/17/2019
17.3.0.34 3,779 12/10/2019
17.3.0.33 4,244 12/4/2019
17.3.0.30 4,326 12/3/2019
17.3.0.29 3,584 11/26/2019
17.3.0.28 3,802 11/19/2019
17.3.0.27 3,637 11/12/2019
17.3.0.26 4,212 11/5/2019
17.3.0.21 4,295 10/29/2019
17.3.0.19 3,653 10/22/2019
17.3.0.17 3,751 10/15/2019
17.3.0.14 4,264 10/3/2019
17.3.0.9-beta 3,244 9/20/2019
17.2.0.51 4,204 9/10/2019
17.2.0.49 3,766 9/3/2019
17.2.0.48-beta 496 9/4/2019
17.2.0.47 3,796 8/27/2019
17.2.0.46 4,284 8/22/2019
17.2.0.41 3,711 8/13/2019
17.2.0.40 3,659 8/6/2019
17.2.0.39 3,704 7/30/2019
17.2.0.36 3,824 7/23/2019
17.2.0.35 4,246 7/17/2019
17.2.0.34 4,460 7/11/2019
17.2.0.28-beta 3,205 6/27/2019
17.1.0.53 3,799 6/25/2019
17.1.0.52 4,359 6/18/2019
17.1.0.51 3,745 6/11/2019
17.1.0.50 3,711 6/4/2019
17.1.0.49 4,248 5/28/2019
17.1.0.48 4,219 5/21/2019
17.1.0.47 4,348 5/14/2019
17.1.0.44 3,772 5/7/2019
17.1.0.43 3,903 4/30/2019
17.1.0.42 3,975 4/23/2019
17.1.0.41 4,258 4/16/2019
17.1.0.40 3,704 4/9/2019
17.1.0.38 4,538 3/29/2019
17.1.0.32-beta 3,261 3/13/2019
16.4.0.54 4,333 2/19/2019
16.4.0.53 4,325 2/14/2019
16.4.0.52 4,602 2/5/2019
16.4.0.48 4,378 1/22/2019
16.4.0.47 4,799 1/16/2019
16.4.0.46 4,354 1/8/2019
16.4.0.44 4,418 12/24/2018
16.4.0.42 4,377 12/17/2018
16.4.0.40-beta 3,406 12/10/2018
16.3.0.36 9,333 11/27/2018
16.3.0.35-beta 3,338 11/23/2018
16.3.0.29 4,744 10/30/2018
16.3.0.21 6,696 9/21/2018