how to do this?? [Tag inside a tag]

2003-07-25 Thread Sashi Ravipati
jsp:param name=Name value=bean:write name=showvalue property=providerName / / I get the following errors Error(32): Attribute: showvalue is not a valid attribute name Error(32): Attribute: property is not a valid attribute name Error(33): Not expecting text inside this tag Can I give the tag

Re: how to do this?? [Tag inside a tag]

2003-07-25 Thread Michael Ruppin
You can't do that. See here for more: http://marc.theaimsgroup.com/?l=struts-userm=105771765327337w=2 HTH m --- Sashi Ravipati [EMAIL PROTECTED] wrote: jsp:param name=Name value=bean:write name=showvalue property=providerName / / I get the following errors Error(32): Attribute:

Re: how to do this?? [Tag inside a tag]

2003-07-25 Thread Sashi Ravipati
so how can I set the value in the jsp:param tag which is available in bean:write. Please bear with me as I am learning.. Thanks [EMAIL PROTECTED] 07/25/03 10:43AM You can't do that. See here for more: http://marc.theaimsgroup.com/?l=struts-userm=105771765327337w=2 HTH m --- Sashi

Re: how to do this?? [Tag inside a tag]

2003-07-25 Thread Michael Ruppin
The third example in Kris' post, would do. For your JSP, that would translate to: jsp:param name=Name value=%=foo / Where does foo come from, you ask? I believe this whould be one of a few possible answers: % String foo = showvalue.getProviderName(); % m --- Sashi Ravipati [EMAIL PROTECTED]

RE: how to do this?? [Tag inside a tag]

2003-07-25 Thread Hookom, Jacob
to do this?? [Tag inside a tag] The third example in Kris' post, would do. For your JSP, that would translate to: jsp:param name=Name value=%=foo / Where does foo come from, you ask? I believe this whould be one of a few possible answers: % String foo = showvalue.getProviderName(); % m --- Sashi