Skip to main content

Posts

Showing posts with the label import export excel file in mvc 5

import export excel file in mvc 5

This is basically used for export and Import excel file using MVC 5 ASP.net. public class XLImportExportManager {      public XLImportExportManager()  { }             public string BulkUploadSample( int tenentId, int companyId)     {             Excel. _Application xlApp;             Excel. Workbook xlWorkBook;             Excel. Worksheet xlWorkSheet;             object misValue = Missing .Value;             xlApp = new Excel. Application ();             xlWorkBook = xlApp.Workbooks.Add(misValue);         ...