This is the equal tag that iam using from the logic tld... but i get the following error:
<logic:equal name="SearchFormBean" property="blnRecsFound" value="true">
where SearchFormBean is the name of the form Bean( methods

ublic boolean isBlnRecsFound() & public void setBlnRecsFound(boolean value) )
blnRecsFound is the name of the property, which is of the type boolean
I want to evaluate if blnRecsFound = true, then wud proceed with the block of code mentioned within the <logic:equal> tag.
This is the error iam getting
org.apache.jasper.JasperException: Exception accessing property blnRecsFound for bean SearchFormBean: java.lang.NoSuchMethodException: Unknown property 'blnRecsFound'
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:432)
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:356)
at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
What mistake am i making?