> For the complete documentation index, see [llms.txt](https://docs.wisej.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wisej.com/docs/controls/containers/page.md).

# Page

The `Page` control is the center point of activity in a Wisej.NET application. It's a container used to show content to a user (alongside the [Form](/docs/controls/containers/form.md) and [Desktop](/docs/controls/containers/desktop.md)).

Only **one** `Page` can be shown to the user at a time.

![Page designer showing full-browser layout capabilities](/files/-Mja7mc2edJXlqW4aoYH)

{% hint style="info" %}
For a full list of properties, methods and events see the [API documentation.](http://docs.wisej.com/api)
{% endhint %}

## Page Navigation

There are several ways to navigate between pages in a Wisej.NET application.

### Show()

Using the `Show()` method on a `Page` instance will show the page to the user, replacing any previously-displayed page.

{% hint style="info" %}
Calling `Show()` will not dispose any previously-shown `Page`, but rather it stays in the `Application.OpenPages` collection for later usage.
{% endhint %}

#### Showing a previously-hidden Page:

{% tabs %}
{% tab title="C#" %}

```csharp
Application.OpenPages["nameOfMyPage"].Show();
```

{% endtab %}
{% endtabs %}

### Setting MainPage

If a `Page` needs to be replaced, set the `Application.MainPage` property.

{% hint style="info" %}
Setting `Application.MainPage` will not dispose any previously-shown `Page`, but rather it stays in the `Application.OpenPages` collection for later usage.
{% endhint %}

{% hint style="warning" %}
Switching the application's page will not affect the shown `Form` instances.
{% endhint %}

## Features

### AutoScroll

The `AutoScroll` property of the `Page` control determines whether scroll bars automatically appear when the control contents exceed its visible area.

## Advanced

### JavaScript Widget

| Item             | Description                                                                                                         |
| ---------------- | ------------------------------------------------------------------------------------------------------------------- |
| Class name       | "wisej.web.ScrollablePage"                                                                                          |
| Theme appearance | "page", see [Themes](https://docs.wisej.com/theme-builder/theme-elements/elements).                                 |
| Child components | "pane" is the page. See [JavaScript](/docs/concepts/javascript-object-model.md).                                    |
| Source code      | [https://github.com/iceteagroup/wisej-js](https://github.com/iceteagroup/wisej-js/blob/master/wisej.web.TextBox.js) |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.wisej.com/docs/controls/containers/page.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
