Skip to main content

I fill a part of the Nintex Form with get query statements. I use generated statements from an other application.

Example:

site.com/NewForm.aspx?Title=Some%20Title&ValueField=1.3%3C2.1


This url generate an error: Something went wrong

Is it possible that the char < is not allowed in a get query?

Hi Simuuh,

have you tried escaping the "<" to "&lt;" ?


Hello Philipp

with this solution the rest of the string (text) will not inserted. sad.png

I need the < chars as "is less than". 


following should work

ValueField=1.3%26lt%3B2.1


It works, thank you happy.png


Reply