I've been playing around with MVC and localization for a multilingual site. It so happens I also have localized downloads (instructions in different languages). I thought: a resource can also contain files, so why not place them there? Easily said and done, but my question now is: How do I extract the files from the resource file so users can either open or save them?
Do I use ResourceManager.GetObject("filename in resource", what type will it be?)
or ResourceManager.GetStream("filename in resource", what type will it be?)
and how do I return them as file?
I've been looking at this post but I'm not sure if this is what I need?