netui
netui:parameter Tag
Writes a name/value pair to the URL or the parent tag.
<netui:parameter
name="string_name"
value="string_or_expression_value" >
... JSP content ...
</netui:parameter>
Writes a name/value pair to the URL or the parent tag.
You can dynamically determine the value of the <netui:parameter> through
the value
attribute.
Attributes |
name |
Required: Yes | Type:
String |
Supports runtime evaluation / JSP Expression Language: Yes |
The name of the parameter. |
value |
Required: Yes | Type:
Object |
Supports runtime evaluation / JSP Expression Language: Yes |
The value of the parameter. May be a literal or a data binding expression. |
In this sample, the hyperlink is amended with the parameter q=Socrates
<netui:anchor href="http://www.google.com/search">
Search Google with the query "Socrates"
<netui:parameter name="q" value="Socrates" />
</netui:anchor>
The URL produced appears below:
http://www.google.com/search?q=Socrates
Tag Information |
Tag Class | org.apache.beehive.netui.tags.html.Parameter |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |