Render :action with params?

Render :action => "second when you render then your method written in :action is not get called only the view with that action name is get called in your example when you render then your method secod is not get called but you are render to the views second.html. Erb for more details refer this to call that method you have to use redirect_to something like following redirect_to :action => "second", :page=> 4.

Render :action => "second" when you render then your method written in :action is not get called only the view with that action name is get called. In your example when you render then your method secod is not get called but you are render to the views second.html. Erb for more details refer this to call that method you have to use redirect_to something like following redirect_to :action => "second", :page=> 4.

Thanks for your answer! :) I tried with redirect_to and it's working but I would like to send ALL the GET params of the first method to the second. Do you know a solution or I have to send all the params one by one?

– Swann Jun 30 '10 at 15:43.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions