Is there a way to type "+" in the text box?

when i type "name+2" in text field and submit i get "name 2" in my controller

is there any way to send "name+2" like html decoded... i dono....
+3
source share
2 answers

Are you using a GET request? The POST request should not have such a problem, since the parameter will not be encoded in HTML format.

+2
source
+ Returns + in HTML

Try this, it should work in your code.

+1
source

All Articles