My Rails 2.3 app generates a page in HTML/CSS or as a word doc. I\'d like to save that html file to the filesystem as a static file (ie. filename.html or filename.doc). I plan t
Another way is adding an after_action to the controller, and in that action using response.body to access rendered content. In this way, your controller can respond to client as normal, save rendered content to database in meanwhile.