I am working on an ASP.Net MVC application that requires to read some xml files and transform it to HTML before sending it to the client browser.
I was wondering if anybody could suggest what is the best option to send the processed stream back to the Client Browser. Is it 1> using Asp.Net MVC's FileStreamResult result Type or 2> using an HTTPHandler for IIS 7.5 with Integrated Mode.
Also which option would be a more optimized solution along with performance?