Writing a JSP page, what exactly does the <c:out> do? I’ve noticed that the following both has the same result:
<p>The person's name is <c:out value='${person.name}' /></p> <p>The person's name is ${person.name}</p>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
c:outescapes HTML characters so that you can avoid cross-site scripting.if
person.name = <script>alert('Yo')</script>the script will be executed in the second case, but not when using
c:out