Hi,
I have a spring and Ajax combination.
I have login.jsp page and detail.jsp page

1>URL mapping is as follows. login.jsp is mapped to login.html So login page is displayed the URL shows as login.html

2>When login page is submitted, detail.jsp is displayed (even here the Url displayed is login.html

3>detail.jsp has sortable column link. When the link is clicked the column gets sorted, but the link that gets displayed is NOT login.html but rather the absolute path of detail.jsp (/jsp/detail.jsp) since this is ajax application, I want the Url be still the same viz login.html instead of the absolute path

how can i achieve this ? what changes I need to do ?

thanks,
pp