I have an application in which I preload values into a form using URL parameters. These parameters are generated from an external (to my app) HTML page using a form submit. These values are user inputs that are likely to contain both spaces and plus signs (+). The URLs are properly encoded, with spaces changing to "+" and the plus signs changing to "% 2B" (without a space). However, when we get to my Zoho app, the values automatically populated into the Zoho form do not convert the"+"s back to spaces.
Example:
User enters "y = mx + b" into the HTML form (text field with name of ID) and hits submit.
Browser goes to"creator.zoho.com/myaccount/myapp/form-perma/myform?ID=y+% 3D+mx+% 2B+b" .
(in the actual URL, there is no space after the percent signs. However, I cannot get this forum to correctly render what I want to write!).
The ID field of myform gets populated with "y+=+mx+++b".
Suggestions on what I might do to get the plus signs correctly converted?