Content ViewSourceSitemap

Creating Variables

Create Global Scope Variable

The content of the test variable from global scope is: This is the content of the global scope variable..

The content of the first test variable is: This is the content of the global scope variable..

Create Page Scope Variable

The content of the test variable from page scope is: This is the content of the page scope variable..

The content of the first test variable is: This is the content of the page scope variable..

Create Session Scope Variable

The content of the test variable from session scope is: This is the content of the session scope variable..

The content of the first test variable is: This is the content of the session scope variable..

Create Request Scope Variable

The content of the test variable from request scope is: This is the content of the request scope variable..

The content of the first test variable is: This is the content of the request scope variable..

Transformations

Transform with stylesheet variable

The content of the first test variable transformed with stylesheet variable:

This is the content of the request scope variable.
(transformed by the stylesheet)

Copy of test variable

Copy of the test variable is: This is the content of the request scope variable.

Copy of the /b/u part of the test variable is: request.

Removing Variables

Remove Request Scope Variable

The content of the test variable from request scope is: Cannot find variable named 'test' in request scope.

The content of the first test variable is: This is the content of the session scope variable..

Remove Session Scope Variable

The content of the test variable from session scope is: Cannot find variable named 'test' in session scope.

The content of the first test variable is: This is the content of the page scope variable..

Remove Page Scope Variable

The content of the test variable from page scope is: Cannot find variable named 'test' in page scope.

The content of the first test variable is: This is the content of the global scope variable..

Remove Global Scope Variable

The content of the test variable from global scope is: Cannot find variable named 'test' in global scope.

The content of the first test variable is: Cannot find variable named 'test' in any scope.