Guest_imported
New member
- Jan 1, 1970
- 0
in jsp a thing written like
<input type="button value="decode> turns into
<input type="butt
on" value="decode"> in the HTML file supplied to the browser at times. This means that this additional line break in between the input type description is taken as a valid character in Netscape and so the field is very different from as it should be. This problem of line breaks gets ignored if it is not in the field descriptions as in that case it is ignored. Is there some way to ensure that this will be written in a single line.
Please do not suggest out.println as a solution as we have already tried it and it does not work as the servlet code generated does put it's own line breaks also.
<input type="button value="decode> turns into
<input type="butt
on" value="decode"> in the HTML file supplied to the browser at times. This means that this additional line break in between the input type description is taken as a valid character in Netscape and so the field is very different from as it should be. This problem of line breaks gets ignored if it is not in the field descriptions as in that case it is ignored. Is there some way to ensure that this will be written in a single line.
Please do not suggest out.println as a solution as we have already tried it and it does not work as the servlet code generated does put it's own line breaks also.