We have a reporting function on our website that allows users to download PDF reports of various data. Some reports require parameters, in which case we send them to the parameter view after selecting a report.
After sending the parameters to the server, FileStreamResult with PDF is returned. The problem is that for reports with parameters, the user remains on the parameters page after returning FileStreamResult. I would like to redirect them back to the report list page.
Is there a way to do this with FileStreamResult or, if I look for my own solution?
source
share