I want to access Struts2 Action bean properties in included jsp files of my main jsp
Main.jsp [where I can access Action Bean]
<s:if test="%{assignedProductBean.productCode =='NOMADIC'}">
//SOMETHING HERE
</s:if>
<s:elseif test="%{assignedProductBean.productCode =='MOBILE'}">
//SOMETHING 2 HERE
</s:elseif>
This is getting displayed correctly. But I moved this part to sub.jsp
Sub.jsp
<s:if test="%{assignedProductBean.productCode =='NOMADIC'}">
//SOMETHING HERE
</s:if>
<s:elseif test="%{assignedProductBean.productCode =='MOBILE'}">
//SOMETHING 2 HERE
</s:elseif>
Main.jsp
<s:include value="./Sub.jsp" />
Now I am not getting desired result. No matter whatever is the 'productCode' Something Here is always showed.
What's the exact issue?