Export data from SharePoint Silverlight application to Excel using REST API
This demo will show how to export data from SharePoint Silverlight application to Excel template or excel sheet. Steps: 1. Create REST API application using MVC4 architecture (URL based navigation). 2. Integrate URL directly in Silverlight hyperlink control in XAML. Step: Create one MVC4 application using visual studio 2010 frame work. Create one ExportController.cs class file under Controller folder in mvc4 project. This class will work as a API application between SharePoint Silverlight and REST API. Create one more ExportRepository.cs file under DataLayer folder. Add one more folder to the solution name as GenerateExcel folder add class file in this folder. File name is ExportToExcel.cs ExportController.cs [ HttpGet ] [ ActionName ( "SharedDocuments" )] public HttpResponseMessage Sha...