fn-GetQueryString(Titel) forbidden chars?

  • 2 September 2016
  • 4 replies
  • 10 views

Badge +3

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?


4 replies

Badge +11

Hi Simuuh,

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

Badge +3

Hello Philipp

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

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

Userlevel 5
Badge +14

following should work

ValueField=1.3%26lt%3B2.1

Badge +3

It works, thank you happy.png

Reply