I have two jsp files written as below
index.jsp
<form action="process.jsp" method="post">
FirstName:<input type="text" name="fname"/><br/>
LastName:<input type="text" name="lname"/><br/>
<input type="submit" value="submit"/>
</form>
process.jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
First Name:<c:out value="${param.fname}"></c:out><br/>
Last Name:<c:out value="${param.lname}"></c:out>
</br>
First Name:${param.fname}
</br>
Last Name:${param.lname}
when we give some input I get I get the same output:
First Name:nm
Last Name:nm
First Name:nm
Last Name:nm
so I am little bit confuse that what is the significance of using c:out tag?? if we can do the same work without c:out then why we have this tag available in JSP. I am new to EL that's why asking silly question..