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 <pre> </pre> tag but no improvements.
Related Article: username availability using ajax
is a JSP discussion thread by jasleen12345 that has 1 reply, was last updated 1 year ago and has been tagged with the keywords: ajaxjspservlets, jsp, validation.
softDeveloper
Junior Poster in Training
76 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
what exactly do you put in as input, and what do you expect as a result?
stultuske
Industrious Poster
4,379 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 24
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
76 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
Thank you so much!
Kind Regards!
softDeveloper
Junior Poster in Training
76 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
Skill Endorsements: 0
Question Answered as of 1 Year Ago by
stultuske
and
Fest3er