D
Dennis Dahn
Hello,
I would like to transfer code from JSP to JSTL but have some problems,
especially in the following code:
<%
if (request.getParameter(ISBN) != null){
book= katalog.getBuch(request.getParameter(ISBN));
%>
in jstl i thought it would be like this:
<c:if test="${param.isbn != null}">
<c:set var="buch" value="${katalog.buch}>
<caram name="isbn"/>
</c:set>
<cut value="${buch.buchTitel}"/>
</c:if>
but there is just an error. So how can I declare the parameter ISBN?
Thanks in advance!
Regards,
Dennis
I would like to transfer code from JSP to JSTL but have some problems,
especially in the following code:
<%
if (request.getParameter(ISBN) != null){
book= katalog.getBuch(request.getParameter(ISBN));
%>
in jstl i thought it would be like this:
<c:if test="${param.isbn != null}">
<c:set var="buch" value="${katalog.buch}>
<caram name="isbn"/>
</c:set>
<cut value="${buch.buchTitel}"/>
</c:if>
but there is just an error. So how can I declare the parameter ISBN?
Thanks in advance!
Regards,
Dennis