954,574 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

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
 
<%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.

You could try

<%String var="<pre>"+ request.getParameter("varname") +"</pre>";
%>


If that works, then you may be overwriting the PRE tags when you insert 'var' into the page's HTML.

Fest3er
Posting Whiz in Training
242 posts since Aug 2007
Reputation Points: 51
Solved Threads: 35
 

Thank you so much!

Kind Regards!

softDeveloper
Junior Poster in Training
67 posts since Nov 2011
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: