Hi Vishal,

You can do the same in one single method in any controller and check
request.method which will have methods 'get' or 'post'
  def my_method
    if :post == request.method
      #Process post
    else
      #Process get - usually just render the form
    end
  end

Regards,
Vishwanath

On Thu, Dec 18, 2008 at 12:36 PM, vishal mehta <[email protected]>wrote:

>
> Hello everyone,
>  I am new to rails and I am trying to run simple get post put methods
> in ruby rails. Can any one tell me where do I implement that methods.
> Can you provide any source where I can go through and learn these
> methods...
> Thanks..
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to