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.
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
Is there a way to send that ID to Stateless form with out using the above query string url, so that other users dont see it and access it further?