遇到的问题
org.apache.jasper.JasperException: Unterminated <c:out tag
这是什么错误,我也导入了,JSTL为什么总是提示我这个错误.这是我做的东东
<%@page contentType="text/html"%>
<%@page pageEncoding="GBK" import="mode.catalog,mode.catalogservice,mode.catalogserviceimpl" %>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>JSP Page</title>
</head>
<body>
<h1>JSP Page</h1>
<jsp:useBean id="catalogservice" class="mode.catalogserviceimpl" scope="page"></jsp:useBean>
<c:forEach var="catalog" items="${catalogservice.catalog}"> </c:forEach>>
<c:out value="${catalog}">
</body>
</html>