On 27 August 2010 14:52, Amit Tomar <[email protected]> wrote: > Amit Tomar wrote: >> hii all, >> i don't know how to ask this question because am new to >> rails. >> but i want to know to is which part of code sumit_tag will take you >> means >> after execution of sumit_tag where control of programme goes??
A submit_tag goes inside a form, for example: <%= form_tag :controller => 'votes', :action => 'create' do %> <%= submit_tag %> <% end %> This generates HTML like: <form action="/votes/create" method="post"> <input type="submit" value="Submit"> </form> So when you press that submit button, your browser POSTs to the '/votes/create' URL. When Rails receives that request, it turns the URL into a controller and an action, based on the rules in your config/routes.rb. In this case it goes to the action/method called 'create' in VotesController. Chris -- 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.

