Properties of a FormBean

2001-10-19 Thread storck
Hi, how can I ONLY write out the content of formbeans property on a JSP as a simple text (not a textfield)?? Thanks!

Re: Properties of a FormBean

2001-10-19 Thread Jonathan M Crater
bean:write name=someAttribute property=someProperty/ storck wrote: Hi, how can I ONLY write out the content of formbeans property on a JSP as a simple text (not a textfield)?? Thanks!

Re: Properties of a FormBean

2001-10-19 Thread Keith Bacon
bean:write scope=request name=myFormBean property=myField / struts will call myFormBean.getMyField() the result appears on your web page. also you can specify readonly=true in the strutshtml:text tag but that seemed to work on Internet Explorer but not on Netscape 5. Keith. ---