top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How do we print “<br> creates a new line in HTML” in JSP?

+1 vote
974 views
How do we print “<br> creates a new line in HTML” in JSP?
posted Aug 31, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

We can use c:out escapeXml attribute to escape the HTML elements so that it get’s shown as text in the browser, for this scenario we will write code like below.

<c:out value="<br> creates a new line in HTML" escapeXml="true"></c:out>
answer Sep 1, 2017 by Rahul Prashad
Similar Questions
+3 votes

I am trying to debug a javascript file, which is used in a .jsp file. When I debug the using F12 in IE10 I did not find that particular file in the debugger tool.

Can anybody please tell, why that particular file is not showing even it is present in project folder location?

...