URL Encoding Issue %3D instead of (=)
Do you mean that you want the submitted form data to look like this: In either the URL query string, or in the POST body of an application/x-www-webform-urlencoded request? If so, then no, you cannot do that. That is a violation of both the URL and application/x-www-webform-urlencoded specifications. = is a reserved separator character that cannot appear unencoded in the name and value fields, it … Read more