html entities - CF 11
Hello,
We have just recently moved our code from CF7 to CF11. We have a huge problem when submitting any forms . The URL parameters gets lost. For example we have productid in the URL parameter and it automatically coverts into html entity ∏uctid. This is just an example, we have many quite a few of them another example is levelid converts to ≤velid
Any help will be greatly appreciated , short of changing the URL parameters, as the application is pretty huge. We just wrote sample page like this. And you we get an error saying productid not found ( because it converts into ∏uctid on submit!) This happens on development and production environment. We are running IIS with CF11
<cfif isDefined('form.submit1')>
<cfoutput>#url.productid#</cfoutput>
</cfif>
<cfform name="form1" id="form1" >
<cfinput name="submit1" id="submit1" type="submit" value="Submit">
</cfform>
