We are using html form which has an action=update and method="post" but when I check the params in the url, all the params are still visible. this may be something really basic, but not able to understand why? I am able to see all params in firebug in firefox. how do I hide the params? why is it showing params?
This is what I have in the html form
<g:form action="updatePassword" name='changePassword' method="post">
<div class="tabs-content">
<g:hiddenField name="id" value="${params?.id}" />
<div id="showError" style="color: red"></div>
<fieldset>
<div id="mainContent" class="message success grid_12" style="display: none;"></div>
<p id="message"></p>
<p class="required">
<label for="newPassword" style="width:220px;"><span class="big2"> New Password :</span></label> <g:passwordField name="newPassword" maxlength="20" value="" /> <img src="../images/icons/fugue/information-blue.png" title="Password must be atleast 8 characters long, should contain one number and one uppercase letter" width="18" height="18">
</p>
<p class="required">
<label for="cPassword" style="width:220px;"><span class="big2">Confirm Password :</span></label>
<g:passwordField name="cPassword" maxlength="20" value="" />
</p>
<p class="required">
<g:if test="${params.page!='header'}">
<g:submitToRemote name="Next" controller="user" action="updatePassword" value="Continue" class="newButtons" onComplete="changePasswordMethod(e)"/>
<g:link controller="user" action="accescontrol"><button type="button" class="newButtons">Back</button></g:link>
</g:if>
<g:else>
<input type="hidden" name="page" value="${params.page}">
<g:submitToRemote name="Next" action="updatePassword" value="Update" class="newButtons" update="[success:'mainContent',failure:'error']" onComplete="showmsgdiv(e)" />
</g:else>
</p>
</fieldset>
</div>
</g:form>
Its a grails application
Update: Firebug Screenshot In order to replicate the issue I selected and updated my password, in firebug I selected the persist tab to persist the previous urls.
Thanks in advance