I have this piece of code:
<%= link_to "New User", new_user_path, :class => "button" %><br />
which works fine, but when I change it to,
<%= button_to "New User", new_user_path, :class => "button" %><br />
I get this error No route matches [POST] "/users/new"
Any help at all will be appreciated. Thanks
EDIT:
<%= button_to "New User", new_user_path, :class => "button", :method => :get %><br />
Works for me now, Thanks again.