Home Struts Struts2 Struts2controltags Set Tag (Data Tag) Example



Set Tag (Data Tag) Example
Posted on: July 20, 2007 at 12:00 AM
In this section, we are going to describe the Set tag . The set tag is a generic tag that is used to assign a value to a variable in a specified scope.

Set Tag (Data Tag) Example

     

In this section, we are going to describe the Set tag. The set tag is a generic tag that is used to assign a value to a variable in a specified scope. It is useful when you wish to assign a variable to a complex expression and then simply reference that variable each time rather than the complex expression. 

Add the following code snippet into the struts.xml file.

struts.xml

<action name="setTag">
   <result>/pages/genericTags/setTag.jsp</result>
</action>

Now create a jsp page using <s:set> tag as  shown in the setTag.jsp page. The set tag is used to assign a value to a variable in a specified scope. The parameters name and value in the tag <s:set name="technologyName" value="%{'Java'}"/> acts as the name-value pair. Here we set the parameters as name="technologyName" value="Java".

setTag.jsp

<%taglib prefix="s" uri="/struts-tags" %>

<html>
  <head>
  <title>Set Tag (Data TagExample!</title>
  </head>
  <body>
  <h1><span style="background-color: #FFFFcc">Set Tag 
   (
Data TagsExample!</span></h1>
  <s:set name="technologyName" value="%{'Java'}"/>
  Technology Name: <s:property value="#technologyName"/>
  </body>
</html>

Output of the setTag.jsp:

     

Related Tags for Set Tag (Data Tag) Example:
ccomdatatimereferenceiovariableexpressiontagriasetlextoexpresseachcomplexrefssishesignvaruseulimceasmesmereferwhensessatplyishaimemplpresspreeaandarsimxpwisvassrirenthabablhatfepleplprndonomo


More Tutorials from this section

Ask Questions?    Discuss: Set Tag (Data Tag) Example   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.