file include error

Hello guys,

i want to include file in another file

for ex. i have a file _search.html.erb & index.html.erb _search include in index using <% render :partial => 'search'%> that's no problem but i want to without underscore i mean (search.html.erb)include in index.html how this one possible.

I think you can do it using the render command. Check out the section “render a file” from the following link:

http://api.rubyonrails.org/classes/ActionController/Base.html#M000658

Hope that helps, Jim http://www.thepeoplesfee.com/contribute

Something like this:

render :file => "/path/to/some/template.erb"