Hi,
Does anyone know how to use the html:link taglibs to call an ActionForm bean from a
link?
I also want to pass a param called 'page' to the link and set it's value to be
'viewcontactlist'.
This is my ActionForm bean:
import javax.servlet.http.HttpServletRequest;
import org.apache.strus.action.*;
public final class ContactForm extends ActionForm {
// page parameter from the CDS menu
private String pageName =null;
public String getPageName(){
return (this.pageName);
}
public void setPageName(String pageName){
this.pageName = pageName;
}
}
I have done the below in my JSP page but it does not seem to be working...
<html:link href="/ContactForm" paramId="page" paramName="ContactForm"
paramProperty="viewcontactlist">
</html:link>
--
This e-mail may contain confidential and/or privileged information. If you are not the
intended recipient (or have received this e-mail in error) please notify the sender
immediately and destroy this e-mail. Any unauthorized copying, disclosure or
distribution of the material in this e-mail is strictly forbidden.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]