This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch feature/clarify-attr-search in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/feature/clarify-attr-search by this push: new 4fb3f1b61 Fixes links to parent 4fb3f1b61 is described below commit 4fb3f1b61efe82c77b06eb3aa668a7abdf3af321 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Tue Oct 31 15:34:50 2023 +0100 Fixes links to parent --- .../core-developers/accessing-application-session-request-objects.md | 2 +- source/tag-developers/access-to-valuestack-from-jsps.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/source/core-developers/accessing-application-session-request-objects.md b/source/core-developers/accessing-application-session-request-objects.md index 7b0fcd3dd..912872081 100644 --- a/source/core-developers/accessing-application-session-request-objects.md +++ b/source/core-developers/accessing-application-session-request-objects.md @@ -81,5 +81,5 @@ Retrieve the attribute (property), with key `myId`, from the specified scope: ``` **Note**: `#attr` is for Page scope attributes first, but will search the remaining scopes, in order, seeking a match. -In opposite using just `#` means you want to fetch a value from the top of the [ValueStack](../tag-developers/access-to-valuestack-from-jsps.md) +In opposite using just `#` means you want to fetch a value from the top of the [ValueStack](../tag-developers/access-to-valuestack-from-jsps) without searching down the stack. diff --git a/source/tag-developers/access-to-valuestack-from-jsps.md b/source/tag-developers/access-to-valuestack-from-jsps.md index d6ab8999d..b9b05d6d2 100644 --- a/source/tag-developers/access-to-valuestack-from-jsps.md +++ b/source/tag-developers/access-to-valuestack-from-jsps.md @@ -1,6 +1,9 @@ --- layout: default title: Access to ValueStack from JSPs +parent: + title: JSP + url: jsp --- # Access to ValueStack from JSPs