How To Pass ID From One Form To Another Form With Out Using The Querystring Functionality?
Hi,
I am using a single "Stateful Form" and "Three Stateless Forms". I am passing the ID Created in the Stateful form to other stateless forms. So that i use the ID passed using query string to stateless forms for updating data to the record in the stateful form.
Suppose say this application is used by many suers,The problem is as the ID is passed as query string, it is stored in browser history. So when anyone logs in they can view the records using those url's since i have written some logic to retrieve data "On Load" based on some things.This is how my url looks with the query string,
https://creator.zoho.com/username/applicationname/#Form:Statelessform?Id_Field=1120709000000224721
Please let me know,Is there a way to pass that ID to Stateless form with out using the above query string url for a user session, so that other users don't see it and access it further using browser history? Is there a way like session management so that i could manage each user session separately and even when the user closes the window in between with the url stored in the browser history, we should redirect them to initial page?