how to export asp.net MVC detail view data to an excel file?

前端 未结 3 1705
轻奢々
轻奢々 2021-01-16 16:47

How to export ASP.NET MVC view data to an excel file ? Actually my view page contain many viewdata types. I am using for each loop with these datatype to displaying data on

3条回答
  •  清酒与你
    2021-01-16 17:00

    You could loop through the Keys/Values of your ViewData and generate the excel file (various options mentioned Here) or simply to CSV

    But I would recommend rather doing this in the controller and returning a FileResult and not from the ViewData (which I presume you using in your View).

提交回复
热议问题