代码如下:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page contentType="text/html;charset=gb2312" language="java"%>
<html>
hele:
${param.userName}
<form action="el.jsp" method="get" name="form1">
<input type="text" name="userName">
<input type="submit" value="submit">
</form>
</html>结果:${param.userName}
我写成<c:out value="${param.userName}"/>
结果还是原样输出。
请问是什么原因???