<input type="text" name="designation" value=<%=request.getParameter("designation")%> ></input>
In this JSP, I've send request parameters from an another JSP page via javascript using window.location.replace() function.
I want to display that request parameter in this jsp page in a text-box.
But its showing only a part of the string up to the first white-space only. remaining string is got trimmed.
What might be the cause of this problem?
e.g. if designation="software engineer" then it is displaying in the text box only "software", and not " "(space) and "engineer"