JSTL小问题
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
jsp1
</title>
</head>
<body bgcolor="#ffffff">
<form action="jsp1.jsp">
<table>
<tr><td>请输入:</td><td><input type="text" name="text" /></td></tr>
<tr><td><input type="submit" value="提交"/></td></tr>
</table>
</form>
<c:if test="${param.text}!=null">
你刚才输入的为:<c:out value="${param.text}"/>
</c:if>
</body>
</html>
请问我应该在这个if条件里怎么写呢?