This is proving to be a tricky one: I have ERb page content being drawn from a DB. In order for it to be interpreted, I use a render: inline => @page.contnet call in my Controller. The problem I''m having is that I want to execute a Helper method in pages_helper.rb *before* the ERb is processed (there are a bunch of regular expression / transformations taking place). Now, I could have easily managed this by having a method in the Page Model, but I''m using all sorts of ActionView methods which really oughtn''t to live in the Model (hence why I''ve created a helper instead). Is there any easy way for me to access the methods of the Helper in my Controller? Or a way to render ERb on-the-fly within my View? -Phil