Newbie question. How do I link from a view in one controller to a view in another controller? Cheers --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
link_to "some good link", :controller => ''other_controller'', :action => ''some_action'' If you have your routes setup w/ map.resources, you''ll have a number of helpers for that as well: link_to "some good link", other_models_path link_to "some good link", new_other_model_path etc. Good luck On May 30, 7:42 pm, fernando <tim.fernandezh...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Newbie question. > How do I link from a view in one controller to a view in another > controller? > > Cheers--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
redirect_to :controller => controller, :action => action Michael On May 30, 11:42 am, fernando <tim.fernandezh...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Newbie question. > How do I link from a view in one controller to a view in another > controller? > > Cheers--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---