diff options
author | xue <> | 2006-01-29 00:46:56 +0000 |
---|---|---|
committer | xue <> | 2006-01-29 00:46:56 +0000 |
commit | b703e05d9154845b6e5c6f1bf20b0a42df7c3613 (patch) | |
tree | bc327f9a4ab76c82b3fc19114292a3ee9c928d27 /demos/quickstart/protected/pages/Configurations/AppConfig.page | |
parent | 568a5cea4833a3316f3741dcd32699334f770d26 (diff) |
Enhanced error report for template parser.
Diffstat (limited to 'demos/quickstart/protected/pages/Configurations/AppConfig.page')
-rw-r--r-- | demos/quickstart/protected/pages/Configurations/AppConfig.page | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/quickstart/protected/pages/Configurations/AppConfig.page b/demos/quickstart/protected/pages/Configurations/AppConfig.page index d40510ef..8d998f85 100644 --- a/demos/quickstart/protected/pages/Configurations/AppConfig.page +++ b/demos/quickstart/protected/pages/Configurations/AppConfig.page @@ -31,8 +31,9 @@ Configuration for an application is stored in an XML file named <tt>application. <li>The <tt><services></tt> element is similar to the <tt><modules></tt> element. It mainly specifies the services provided by the application.</li>
<li>The <tt><parameters></tt> element contains a list of application-level parameters that are accessible from anywhere in the application. You may specify component-typed parameters like specifying modules, or you may specify string-typed parameters which take a simpler format as follows,
<com:TTextHighlighter Language="xml" CssClass="source">
-<parameter id="ParameterID">ParameterValue</parameter>
+<parameter id="ParameterID" value="ParameterValue" />
</com:TTextHighlighter>
+Note, if the <tt>value</tt> attribute is not specified, the whole parameter XML node (of type <tt>TXmlElement</tt>) will be returned as the parameter value.
</li>
</ul>
<p>
|