I am testing a JSP that writes some text with characters in <input type="text" ... > fields. When I call getParameterValue(), the string returned is different from what was originally in the database, because all the spaces (ASCII code 32) were sent as to HttpUnit and have been then replaced by the hard space (ASCII character 160).
Is this the correct behavior according to the specs?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am testing a JSP that writes some text with characters in <input type="text" ... > fields. When I call getParameterValue(), the string returned is different from what was originally in the database, because all the spaces (ASCII code 32) were sent as to HttpUnit and have been then replaced by the hard space (ASCII character 160).
Is this the correct behavior according to the specs?