Attributes |
Name | Required | Request-time | Type | Description |
value | false | true | java.lang.String |
The target URL. If the URL starts with a slash and does not contain the current
web application context path, then the context path will be prepended to the URL.
|
var | false | true | java.lang.String |
The (optional) name of a scoped variable to store the generated URL in. If no
name is specified then the URl will be written directly to the page instead. See
also the 'scope' attribute to control which scope the variable gets set in.
|
scope | false | true | java.lang.String |
The (optional) name of the JSP scope into which to set the variable specified by
the var attribute. Valid values are 'page', 'request', 'session' and 'application'.
Defaults to 'page'.
|
event | false | true | java.lang.String |
The (optional) event that should be fired if the link is to an ActionBean. If not
supplied then the tag will not render an explicit event (but one may by built in
to the URL/href supplied).
|
beanclass | false | true | java.lang.Object |
The fully qualified name of an ActionBean class, or alternatively a Class instance
for an ActionBean class. An alternative to the 'value' attribute, the 'beanclass'
attribute will generate an href appropriate for the ActionBean identified. Note
that if an ActionBean that does not yet exist is identified an exception will
be thrown!
|
anchor | false | true | java.lang.String |
The (optional) anchor that is appended at the end of the generated URL.
If the URL specified by the value attribute already contains the anchor then
the anchor specified by this attribute takes precedence.
|
prependContext | false | true | java.lang.Boolean |
Indicates if the application context path should be included at the beginning of
the generated URL.
|
addSourcePage | false | true | java.lang.String |
Indicates if the _sourcePage parameter should be appended to the URL. Default
value is false.
|