Writing a JSP page, what exactly does the do? I\'ve noticed that the following both has the same result:
The person\'s na
c:out escapes HTML characters so that you can avoid cross-site scripting.
c:out
if person.name =
person.name =
the script will be executed in the second case, but not when using c:out