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.

Recommended Answers

All 4 Replies

what exactly do you put in as input, and what do you expect as a result?

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

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

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.

Thank you so much!

Kind Regards!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.