link forward

Hi,

I am trying to link from a home page to other pages and cannot seem to have the right syntax<%= link_to ‘person’, :action => ‘list’ %> JIM

I think you want

<%= link_to 'People', :controller=>'person', :action => 'list' %>

The first argument is the text for the link. Have a look at the RDocs for link_to_remote.

Max