Displaying 1 result from an estimated 1 matches for "value_to_search_for".
2006 Aug 14
4
Controller method problem
Hi,
I have a def in my controller see below where i want to find the page 
object based on a parameter value and then use the page_id to then find 
all the contents that belong to that page in the same method.
Controller
def aboutus
    @page = Page.find_by_name(params[''About Us''])
    @contents = Content.find(:all,
    :conditions => "page_id = #{@page.id}")
end