Displaying 1 result from an estimated 1 matches for "neat_page".
Did you mean:
get_page
2006 Jan 22
0
link_to query string
Here''s a simple one I think.
Using link_to, how do you get multiple fields in the query string?
link_to("anchor text", {:action=>"neat_page", :field_1=>"value 1",
:field_2=>"value 2"})
-this only gets you field_1 in the query string
as does this -
link_to("anchor text", :action=>"neat_page", :field_1=>"value 1",
:field_2=>"value 2")
link_to("anchor t...