I need to pass a request parameter from one JSP to another JSP page like this:

<a href="cv.jsp?type=alaacv">alaa</a>

However, when I try to access it as below, it doesn't print anything.

<c:set var="selectedCV" value="${type}" scope="request" />
<c:out value="${selectedCV}" />

How is this caused and how can I solve it?

没有正确的解决方案

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top