<c:param>标记将参数添加到包含“ import”标记的URL中。它允许在URL中指定正确的URL请求参数, 并自动执行任何必要的URL编码。
在<c:param>标记内, value属性指示参数值, name属性指示参数名称。
让我们看一下标记的简单示例:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Core Tag Example</title>
</head>
<body>
<c:url value="/index1.jsp" var="completeURL"/>
<c:param name="trackingId" value="786"/>
<c:param name="user" value="Nakul"/>
</c:url>
${completeURL}
</body>
</html>
输出:
/JSP/index1.jsp?trackingId=786&user=Nakul
评论前必须登录!
注册