From ed02f2fbc9680d5fba0a2b10f9c64aad5d1ecb47 Mon Sep 17 00:00:00 2001 From: ueyama <> Date: Sun, 3 Jun 2007 16:54:35 +0000 Subject: Tranlates for Japanese by Shinya.K --- .../protected/pages/Fundamentals/ja/Pages.page | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 demos/quickstart/protected/pages/Fundamentals/ja/Pages.page (limited to 'demos/quickstart/protected/pages/Fundamentals/ja/Pages.page') diff --git a/demos/quickstart/protected/pages/Fundamentals/ja/Pages.page b/demos/quickstart/protected/pages/Fundamentals/ja/Pages.page new file mode 100644 index 00000000..32c5d154 --- /dev/null +++ b/demos/quickstart/protected/pages/Fundamentals/ja/Pages.page @@ -0,0 +1,23 @@ + + +

Pages

+

+Pages are top-most controls that have no parent. The presentation of pages are directly displayed to end-users. Users access pages by sending page service requests. +

+

+Each page must have a template file. The file name suffix must be .page. The file name (without suffix) is the page name. PRADO will try to locate a page class file under the directory containing the page template file. Such a page class file must have the same file name (suffixed with .php) as the template file. If the class file is not found, the page will take class TPage. +

+ +

PostBack

+

+A form submission is called postback if the submission is made to the page containing the form. Postback can be considered an event happened on the client side, raised by the user. PRADO will try to identify which control on the server side is responsible for a postback event. If one is determined, for example, a TButton, we call it the postback event sender which will translate the postback event into some specific server-side event (e.g. OnClick and OnCommand events for TButton). + +

+ +

Page Lifecycles

+

+Understanding the page lifecycles is crucial to grasp PRADO programming. Page lifecycles refer to the state transitions of a page when serving this page to end-users. They can be depicted in the following statechart, + +

+ +
$Id: Pages.page 1650 2007-01-24 06:55:32Z wei $
\ No newline at end of file -- cgit v1.2.3