I have a 4.6 web application that I am migrating to R6 and am running into a URL issue. When I am trying to create a document through the browser I am receiving the following error:
HTTP Web Server: Couldn’t find design note - Project
The form name alias is ‘Project Office Request’. If I change the name of the form to not include any spaces (i.e. POR) it works fine. Is something else I can do to allow the URL to contain %20 for the spaces and not have to change the form name (which would then require me to run an agent on the current documents)?
Subject: RE: %20 causing error in R6 Web Application
Thanks for the suggestion! I was using the javascript escape() function to add the %20 to the URL and now am using the replace() function to replace all instances of a space with the + symbol. It seems to be working now.