You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Scott Cressler <sc...@propel.com> on 2001/04/26 17:25:39 UTC

RE: help..bean write not working..

The thing this has always been for me was forgetting to have the taglib
directive for the bean tags at the top of my JSP.  If you forget that, the
tag is just ignored, or rather, it is just output.

Scott

> -----Original Message-----
> From: Dudley Butt@i-Commerce [mailto:Dudley.Butt@za.didata.com]
> Sent: Thursday, April 26, 2001 7:17 AM
> To: 'struts-user@jakarta.apache.org'
> Subject: help..bean write not working..<html:form action="<bean:write
> name ='formAction' />" >
> 
> 
> hi all, 
> 
> i cant seem to get this bean write tag to work, any ideas?
> 
> <logic:notPresent name="user" >
>     <bean:define id="formAction" value="/eFilerAddNoUser" 
> scope="request" />
> </logic:notPresent>
> <logic:present name="user" >
>     <bean:define id="formAction" value="/eFilerAdd" scope="request" />
> </logic:present>
> 
> <html:html>
> <html:errors/>
> <head><html:base/>
> <link rel="stylesheet" href=<bean:message key="all.stylesheet"/>
> type="text/css">
> </head>
> <body>
> 
> <html:form action="<bean:write name=\"formAction\" ></bean:write>" >
> .....
> ..
> .
> 
> thanx
>