Using '%' in the URL for METHOD = "GET"
Hi,
I have a html sample which accepts 3 text values and a submit button as given below.
<html>
<body>
<form name="f1" mehtod="get" action="someURL">
<input type="text" name="t1">
<input type="text" name="t2">
<input type="text" name="t3">
<input type="submit" name="b1" value="submit">
</form>
</body>
</html>
if i enter data like "75%" into any of the TextBox, the get parameter contains the "%".
But when a retrieve the same in a SERVLET, using getParameter("...")
the data which contains "%" is not retrieved.
URL treats "%" as a special character and omits the same.
I need to get the complete value which contains either + or % or ....etc
How do i solve this problem.
Please help
- Raju

