In this article I will explain with an example, how to export to CSV file in ASP.Net MVC Razor. 
	
		When the Export Button is clicked, the data from Database is fetched using Entity Framework and a Comma Separated (Delimited) string is generated which is exported and downloaded as CSV file in ASP.Net MVC Razor. 
	
		 
	
		 
	
		Database
	
		Here I am making use of Microsoft’s Northwind Database. You can download it from here.
	
	
		 
	
		 
	
		Entity Framework Model
	
		Once the Entity Framework is configured and connected to the database table, the Model will look as shown below. 
	
	
		 
	![Export to CSV in ASP.Net MVC]() 
	
		 
	
		 
	
		Controller
	
		The Controller consists of two Action methods.
	
		Action method for handling GET operation
	
		Inside this Action method, the Top 10 Customer records are fetched and returned to the View.
	
		 
	
		Action method for handling the CSV File Export and Download operation
	
		This Action method is executed when the Export Submit button is clicked.
	
		
			Note: The following Action method performs File Download and hence the return type is set to FileResult.
	 
	
		 
	
		The WebGrid data is converted into a Comma Separated (Delimited) string and then the Comma Separated (Delimited) string is converted into Byte Array using the GetBytes functions of the ASCII class. 
	
		Finally, it is exported and downloaded as CSV file using the File function. 
	
		
			public class HomeController : Controller
		
			{
		
			    // GET: Home
		
			    public ActionResult Index()
		
			    {
		
			        NorthwindEntities entities = new NorthwindEntities();
		
			        return View(from customer in entities.Customers.Take(10)
		
			                    select customer);
		
			    }
		
			 
		
			    [HttpPost]
		
			    public FileResult Export()
		
			    {
		
			        NorthwindEntities entities = new NorthwindEntities();
		
			        List<object> customers = (from customer in entities.Customers.ToList().Take(10)
		
			                                    select new[] { customer.CustomerID.ToString(), 
		
			                                                            customer.ContactName, 
		
			                                                            customer.City, 
		
			                                                            customer.Country
		
			                                }).ToList<object>();
		
			 
		
			        //Insert the Column Names.
		
			        customers.Insert(0, new string[4] { "Customer ID", "Customer Name", "City", "Country" });
		
			 
		
			        StringBuilder sb = new StringBuilder();
		
			        for (int i = 0; i < customers.Count; i++)
		
			        {
		
			            string[] customer = (string[])customers[i];
		
			            for (int j = 0; j < customer.Length; j++)
		
			            {
		
			                //Append data with separator.
		
			                sb.Append(customer[j] + ',');
		
			            }
		
			 
		
			            //Append new line character.
		
			            sb.Append("\r\n");
		
			 
		
			        }
		
			 
		
			        return File(Encoding.UTF8.GetBytes(sb.ToString()), "text/csv", "Grid.csv");
		
			    }
		
			}
	 
	
		 
	
		 
	
		View
	
		Inside the View, in the very first line the Customer Entity is declared as IEnumerable which specifies that the Model will be available as a Collection.
	
		For displaying the records, the WebGrid is rendered using GetHtml function which renders the WebGrid using Model. 
	
	
		 
	
		The WebGrid will render as an HTML Grid (Table) consisting of the records from the Customers Table. 
	
		Finally there’s an HTML Submit button enclosed inside a Form with the Action method specified as Export.
	
		When this Button will be clicked, the Form is submitted and the Export Action method is called.
	
		
			@model IEnumerable<Customer>
		
			 
		
			@{
		
			    Layout = null;
		
			    WebGrid webGrid = new WebGrid(source: Model, canSort: false, canPage: false);
		
			}
		
			<!DOCTYPE html>
		
			 
		
			<html>
		
			<head>
		
			    <meta name="viewport" content="width=device-width"/>
		
			    <title>Index</title>
		
			</head>
		
			<body>
		
			    <h4>Customers</h4>
		
			    <hr/>
		
			    <div id="Grid">
		
			        @webGrid.GetHtml(
		
			        htmlAttributes: new { @id = "WebGrid" },
		
			        columns: webGrid.Columns(
		
			                 webGrid.Column("CustomerID", "Customer Id"),
		
			                 webGrid.Column("ContactName", "Customer Name"),
		
			                 webGrid.Column("City", "City"),
		
			                 webGrid.Column("Country", "Country")))
		
			    </div>
		
			    <br/>
		
			    <br/>
		
			    @using (Html.BeginForm("Export", "Home", FormMethod.Post))
		
			    {
		
			        <input type="submit" id="btnSubmit" value="Export"/>
		
			    }
		
			</body>
		
			</html>
	 
	
		 
	
		 
	
		Screenshots
	
		WebGrid
	![Export to CSV in ASP.Net MVC]() 
	
		 
	
		Exported CSV File
	![Export to CSV in ASP.Net MVC]() 
	
		 
	
		 
	
		Downloads