javascript <pre> tag keep text format
Dear all,
I'm passing a javascript String variable varname in a form inside a jsp to another page.
<form name="form1" action="nextpage.jsp" method="post ">
<input type="hidden" name="varname" value="teste" />
<input type="button" value="button" onClick="document.form1.varname.value = function(window);">
<input type="submit" name="button" value="test1" />
</form>
When I get the String in the next page with:
<%String var=request.getParameter("varname");
%>
However, all the breaklines and whitespaces are gone when the page is displayed!
I tried using the tag but no improvements.
softDeveloper
Junior Poster in Training
67 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
what exactly do you put in as input, and what do you expect as a result?
stultuske
Posting Sensei
3,137 posts since Jan 2007
Reputation Points: 1,114
Solved Threads: 433
Example of input:
Hello Hello
Hi Hi Hi Hi
Hello Hello
Output I'm getting:
Hello Hello Hi Hi Hi Hi Hello Hello
I want to keep the same format when I call request.getParameter..
softDeveloper
Junior Poster in Training
67 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
Thank you so much!
Kind Regards!
softDeveloper
Junior Poster in Training
67 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0