Hi,
In my MVC project, I copied sample code(See below example)
in my Index.cshtml file. I did not write server side function Excel_Export_Save() anywhere. Why below setting still worked in
my project?
Furthermore, I
changed "Excel_Export_Save" to other things, it still worked.
What is the meaning of “.ProxyURL(Url.Action("Excel_Export_Save",
"Grid"))” then? Thanks.
…
.Excel(excel
=> excel
.FileName("Kendo
UI Grid Export.xlsx")
.Filterable(true)
.ProxyURL(Url.Action("Excel_Export_Save",
"Grid"))