Excel file download in ASP.NET

In this article we are going to learn how we can download data as an excel file. For Excel file download in ASP.NET, we have several methods and here I’m going to explain a very easy method using a nuget package called EPPlus. EPPlus is  sophisticate enough to perform simple to complex excel operations. Lets…

Upload files in ASP.NET MVC

How to upload files in ASP.NET MVC In a previous article we already discussed about how to do a file download in ASP.NET MVC. Now lets see how to upload files with MVC. For this Im using an example of very simple user registration form with a profile picture upload. First I have added a…

Download CSV file in ASP.NET MVC

How to create and download CSV files in ASP.NET MVC Sometimes we have to create csv(comma separated) data files from our web applications and let the end user to download csv files. In ASP.NET MVC its not a much complicated issue. We can read whatever the data from a database, service or from another file…