summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Fundamentals/Modules.page
diff options
context:
space:
mode:
authorxue <>2005-12-27 01:46:50 +0000
committerxue <>2005-12-27 01:46:50 +0000
commit08b59ff62c4dfc98674c263269807798b6a83463 (patch)
tree4bb2dc445ad16d073ef9298f4a53dc568382c2b5 /demos/quickstart/protected/pages/Fundamentals/Modules.page
parentd06ae83d49bda2c8a4decd95f299776f1b6648aa (diff)
Diffstat (limited to 'demos/quickstart/protected/pages/Fundamentals/Modules.page')
-rw-r--r--demos/quickstart/protected/pages/Fundamentals/Modules.page37
1 files changed, 37 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Fundamentals/Modules.page b/demos/quickstart/protected/pages/Fundamentals/Modules.page
new file mode 100644
index 00000000..93573332
--- /dev/null
+++ b/demos/quickstart/protected/pages/Fundamentals/Modules.page
@@ -0,0 +1,37 @@
+<com:TContent ID="body" >
+
+<h1>Modules</h1>
+<p>
+A module is an instance of a class implementing the <code>IModule</code> interface. A module is commonly designed to provide specific functionality that may be plugged into a PRADO application and shared by all components in the application.
+</p>
+<p>
+PRADO uses configurations to specify whether to load a module, load what kind of modules, and how to initialize the loaded modules. For more details, please see the <a href="?page=Configurations.Overview">configurations</a>.
+</p>
+<p>
+There are three core modules that are loaded by default whenever an application runs. They are <a href="#request">request module</a>, <a href="#response">response module</a>, and <a href="#error">error handler module</a>. In addition, <a href="#session">session module</a> is loaded when it is used in the application. PRADO provides default implementation for all these modules.
+</p>
+<p>
+Developers may replace the core modules with their own implementations via application configuration, or they may write new modules to handle other tasks. For example, a module may be developed to provide common database logic for one or several pages.
+</p>
+
+<a name="request" />
+<h2>Request Module</h2>
+<p>
+</p>
+
+<a name="response" />
+<h2>Response Module</h2>
+<p>
+</p>
+
+<a name="error" />
+<h2>Error Handler Module</h2>
+<p>
+</p>
+
+<a name="session" />
+<h2>Session Module</h2>
+<p>
+</p>
+
+</com:TContent> \ No newline at end of file