Hi i have a hyperlink from hyperlink i am calling a servlet and also sending a parameter with request but when '%' appended with text then shows null value.
Code Of Jsp
<h1><a href="test11?val=100%">click</a></h1>
Code of servlet
String s=request.getParameter("val");
out.print("this is a text"+s);
for <h1><a href="test11?val=100">click</a></h1>
it works fine but when i add '%' it print null.