10 pts.
 Mask the URL
I am working on a Lotus Notes Web Application. I have a search page where the user enters the search criteria and clicks on search. then the results page is displayed with all the search criteria in the URL. I donot want this data to be displayed in the Page URL. Kindly help.

Software/Hardware used:
ASKED: January 8, 2008  9:08 PM
UPDATED: January 16, 2008  11:51 AM

Answer Wiki:
You don't give any details about how your code is implemented (formula language, LotusScript, etc) but the following should work with <b>minimal change from your existing logic flow</b>:... <ol> <li> Store the search parameters as fields in a profile document having an appropriate profile "key" value.</li><li> In the URL, specify the profile document's key value, rather than the search parameters themselves.</li><li> Finally, using the key value in the URL retrieve the profile document and get the values of the search parameters from it.</li> </ol>
Last Wiki Answer Submitted:  January 16, 2008  11:51 am  by  Denny Cherry   64,505 pts.
All Answer Wiki Contributors:  Denny Cherry   64,505 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Alternatively you could use a frameset. This will hide the url from the address bar but it would still be available if the user (or developer) wanted to see it.

 10 pts.