Code change from Struts-tag to JSP - el
can anyone help me in converting the following var declaration code in struts-taglibs into JSp-el (using <c:set> i suppose)...
for some reasons i'd to change my code from taglibs to el as there are certain stuff which iam unable to do in taglibs esp. string concatenation for eg ( desc = desc + "something")
<bean:define id="desc">
<b><bean:write name="map" property="siteType"/>:</b><a href='http://147.147.2.91:7001/pfk-deploy/sitehomepage.do?site=<bean:write name="map" property="siteID"/>'><bean:write name="map" property="plantID"/> </a>
<b>Address:</b> <small><bean:write name="map" property="address"/></small>
<b>East, North:</b> <bean:write name="map" property="x_East"/> ,<bean:write name="map" property="y_North"/>
<b>Long, Lat:</b><bean:write name="map" property="xLong"/>,<bean:write name="map" property="yLat"/>
</bean:define>
thanks .

