Praoblems in creating a variable using JSP - el
Posting this again :
Please help
How to create a variable using <c:set> whose value is
> specified within the tag body . I want to use this
> variable created as one of the parameters in a
> javascript method call . But my problem is when I run
> my application and do the view source , the HTML page
> shows me the variable as it is without substituting
> its value .
>
> can anyone help ? its urgent
This is my code :
<c:forEach var="photo" items="${photos}" varStatus="status" >
<c:set var="photolink${status.index}" >
Click to view full-size:
<a href='http://147.147.2.91:7001/pfk-deploy/GetImage?photo="{photo.photoid}"' target='_New'><img style=margin-left:20px src='http://147.147.2.91:7001/pfk-deploy/thumbnail.do?photo="{photo.photoid}"' border=0 width=75 height=56></a>
</c:set>
doSearch( "<%=desc%>", '{c:out value="${photolink}"/}');
</c:forEach>
Iam using weblogic 8.1 and my web.xml says Web Application 2.3.
Can this be a problem.

