NewbieQ: How do you specify a name for a form

In start_form_tag howw do you specify the form name??
Eric

On Saturday 24 December 2005 06:45, Eric S. wrote:

In start_form_tag howw do you specify the form name??
Eric

give to form_tag a second argument: a hash with all the options of the
html
tag, like:

<%= form_tag({:action => :update, :id => @product},
{:name => “frm”, :onsubmit => “return false”}) %>

Francois

Thanks Francois, just what I need
Eric.