From 654a9cae43358c7eecf3b522e9876aa7815e2453 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Mon, 7 Dec 2015 15:57:51 +0100 Subject: Move urls from pradosoft.com to github's project page; drop unmaintained quickstart tutorial translations --- .../protected/pages/Advanced/es/State.page | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100755 demos/quickstart/protected/pages/Advanced/es/State.page (limited to 'demos/quickstart/protected/pages/Advanced/es/State.page') diff --git a/demos/quickstart/protected/pages/Advanced/es/State.page b/demos/quickstart/protected/pages/Advanced/es/State.page deleted file mode 100755 index c43a9dff..00000000 --- a/demos/quickstart/protected/pages/Advanced/es/State.page +++ /dev/null @@ -1,54 +0,0 @@ - - -

Persistent State

-

-Web applications often need to remember what an end user has done in previous page requests so that the new page request can be served accordingly. State persistence is to address this problem. Traditionally, if a page needs to keep track of user interactions, it will resort to session, cookie, or hidden fields. PRADO provides a new line of state persistence schemes, including view state, control state, and application state. -

- -

View State

-

-View state lies at the heart of PRADO. With view state, Web pages become stateful and are capable of restoring pages to the state that end users interacted with before the current page request. Web programming thus resembles to Windows GUI programming, and developers can think continuously without worrying about the round trips between end users and the Web server. For example, with view state, a textbox control is able to detect if the user input changes the content in the textbox. -

-

-View state is only available to controls. View state of a control can be disabled by setting its EnableViewState property to false. To store a variable in view state, call the following, -

- -$this->setViewState('Caption',$caption); - -

-where $this refers to the control object, Caption is a unique key identifying the $caption variable stored in viewstate. To retrieve the variable back from view state, call the following, -

- -$caption = $this->getViewState('Caption'); - - -

Control State

-

-Control state is like view state in every aspect except that control state cannot be disabled. Control state is intended to be used for storing crucial state information without which a page or control may not work properly. -

-

-To store and retrieve a variable in control state, use the following commands, -

- -$this->setControlState('Caption',$caption); -$caption = $this->getControlState('Caption'); - - -

Application State

-

-Application state refers to data that is persistent across user sessions and page requests. A typical example of application state is the user visit counter. The counter value is persistent even if the current user session terminates. Note, view state and control state are lost if the user requests for a different page, while session state is lost if the user session terminates. -

-

-To store and retrieve a variable in application state, use the following commands, -

- -$application->setGlobalState('Caption',$caption); -$caption = $application->getGlobalState('Caption'); - - -

Session State

-

-PRADO encapsulates the traditional session management in THttpSession module. The module can be accessed from within any component by using $this->Session, where $this refers to the component object. -

- -
-- cgit v1.2.3