hi all,
actually i dont know where to put this, so i have given here itself.
My project is to convert the struts framework to spring framework. The problem i am facing is while converting jsp pages from struts to spring, i dono how to replace logic tags in it. Like logic:equal and logic:messages. i have mentioned the code using these two tags. please help me to use it in spring.
Thanks in advanceCode:<logic:messagesPresent> <html:messages id="errors"> <span style="color: #db0000;"> <c:out value="${errors}"/></span> </html:messages> </logic:messagesPresent> <logic:messagesNotPresent> <fmt:message key="login.message"/> </logic:messagesNotPresent> <logic:equal name="Link" value="FIRE_STATION" scope="session" > <li><a class="selected" href="../fireStation/getFireStations.htm" title="Manage Fire Station">Fire Stations</a></li> </logic:equal> <logic:notEqual name="Link" value="FIRE_STATION" scope="session" > <li><a href="../fireStation/getFireStations.htm" title="Manage Fire Station">Fire Stations</a></li> </logic:notEqual>


Reply With Quote