Hi,
We are trying to remove the usage of the Session in the ASP.net MVC implementation of Export to CSV functionality mentioned @
https://paramquery.com/pro/demos33#. This mentions a HttpPost and HttpGet action method, post saving the session object and get then using it to generate the file.
Is there an implementation which can merge both of them into single action method that avoid usage of Session? There could be other ways like using a file or DB to save the contents but we want to know if there is an implementation inbuilt.
Thanks.