6
votes
1answer
168 views
What’s the difference between the four File Results in ASP.NET MVC
ASP.NET has four different types of file results:
FileContentResult: Sends the contents of a binary file to the response.
FilePathResult: Sends the contents of a file to the response
FileResult: …
1
vote
3answers
3k views
Using Stream Result with Struts2
I am attempting to use a Stream Result to return an image from a struts2 application. I seem to be having problem with configuring the action. Here is the configuration:
<result name="success" …
