Problem while i submit the form

<% form_for :profile,                @profile,                :url => { :action => 'privilege_assign' } do |f| %> <label>Profile : </label> <%= text_field_with_auto_complete :profile, :name, { :size => 24} %> </div> <%=flash[:notice]%>

<%= submit_tag '', :class => 'SubmitButton' %>

when the user enters submit button without entering any value into the field the flash notice message will be displayed.then if he enters value
into the field and he click the submit button it passes only user_id .it doesnot passing the user_type. it passes like below http://192.168.0.82:3000/users/privilege_assign/2

That's normal. Forms post their contents by default and so those
parameters don't show up in the url.

Fred

Frederick Cheung wrote: