| |||||||
FRAMES NO FRAMES |
Load the response from a dynamic application request and make it available as a bean.
Perform an internal dispatch to the specified application component (or external URL) and make the response data from that request available as a bean of type String
. This tag has a function similar to that of the standard <jsp:include>
tag, except that the response data is stored in a page scope attribute instead of being written to the output stream. If the current request is part of a session, the generated request for the include will also include the session identifier (and thus be part of the same session).
The URL used to access the specified application component is calculated based on which of the following attributes you specify (you must specify exactly one of them):
ActionForward
to be looked up, and use the module-relative or context-relative URI found there.Tag Information | |
Tag Class | org.apache.struts.taglib.bean.IncludeTag |
TagExtraInfo Class | org.apache.struts.taglib.bean.IncludeTei |
Body Content | empty |
Display Name | None |
Attributes | ||||
Name | Required | Request-time | Type | Description |
anchor | false | true | java.lang.String | Optional anchor tag ("#xxx") to be added to the generated hyperlink. Specify this value without any "#" character. |
forward | false | true | java.lang.String | Logical name of a global |
href | false | true | java.lang.String | Absolute URL (including the appropriate protocol prefix such as "http:") of the resource to be included. Because this URL could be external to the current web application, the session identifier will not be included in the request. |
id | true | false | java.lang.String | Specifies the name of the scripting variable (and associated page scope attribute) that will be made available with the value of the specified web application resource. |
page | false | true | java.lang.String | Module-relative URI (starting with a '/') of the web application resource to be included. |
transaction | false | true | boolean | Set to |
Variables | No Variables Defined. |
| |||||||
FRAMES NO FRAMES |