No, I want the output of my action to be yet another Struts tag (with an s:
suffix) which is translated into its HTML equivalent -  so for example:

If my JSP file includes:

<s:property value="property1">

then the output of myAction.getProperty1 will be the following code:

<s:property value="property2">

and that in turn returns "Hello". 

So I want the outcome to be "Hello" on the screen.

Another example: 

<s:property value="mytextbox">

and the output of that will be

<s:textfield value="hello".... >

and I want the result to be a text field displaying the string "hello"
inside it.


Etcetera...



newton.dave wrote:
> 
> --- shai200 <[EMAIL PROTECTED]> wrote:
>> Second question - how can I use struts tags as output (i.e.
>> <s:textarea>)?
>> Can Struts in turn convert them into HTML code by outputting Struts HTML
>> tag using <s:property > ?
> 
> You mean you want to display the (escaped) HTML created by a tag?
> 
> d.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Outputting-raw-HTML-with-s%3Aproperty-tag-tp14554781p14560245.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to