I'm writing an application that gets information from an HTML form. I need the user to be able to enter address information, which usually requires a space in the field. However, when I go to retrieve the info from the field, everything after any space is truncated. IE, if the user enters "88 bimini road," all I get returned from the form is "88".I am using the standard POST method and an input type of "text." wtf am I n00bing on?
2/22/2006 6:56:33 PM
post ur code
2/22/2006 7:57:38 PM
show us yer n00bs![form name="editAddressForm" action="EditAddress" method="POST"] [input type="text" name="address1"][/form]changed the brackets, of course ]
2/22/2006 9:23:41 PM
what about the code that processes the input
2/22/2006 9:52:20 PM
its a simple JSP script that does request.getParameter("address1")
2/22/2006 10:02:23 PM