W
wenzhi
Unregistered / Unconfirmed
GUEST, unregistred user!
http://java.sun.com/jstl/core 是什么东东,该怎么配置
<%@ page contentType="text/html"
%>
<%@ taglib prefix="c"
uri="http://java.sun.com/jstl/core"
%> //
<html>
<head>
<title>JSP is Easy</title>
</head>
<body bgcolor="white">
<h1>JSP is as easy as ...</h1>
<%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
1 + 2 + 3 = <cut value="${1 + 2 + 3}"
/>
</body>
</html>
这是书上一个例子,怎么运行不了。
要配置什么吧
<%@ page contentType="text/html"
%>
<%@ taglib prefix="c"
uri="http://java.sun.com/jstl/core"
%> //
<html>
<head>
<title>JSP is Easy</title>
</head>
<body bgcolor="white">
<h1>JSP is as easy as ...</h1>
<%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
1 + 2 + 3 = <cut value="${1 + 2 + 3}"
/>
</body>
</html>
这是书上一个例子,怎么运行不了。
要配置什么吧