I have a ASP.Net MVC form that upon submit I need a couple of things to happen.
- Firstly I need to generate a pdf report and launch it
- Secondly I need to return to the main index page
Currently I can do the first by returning a filestream from my action OR the second by returning a view but I can't figure out how to do both
Can anyone point me in the right direction?
Thanks