summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Advanced
diff options
context:
space:
mode:
authorxue <>2006-02-28 03:06:45 +0000
committerxue <>2006-02-28 03:06:45 +0000
commit3b91e1039d8bd9dcc3db14734eca4e88fdbcb2f0 (patch)
tree38d51f272d99ae85d29d5bd23407d2fa97c133e9 /demos/quickstart/protected/pages/Advanced
parentb0a640ec3dca2a99d3f0b5a83e3a1bf6ae278c16 (diff)
another fix about asset tutorial.
Diffstat (limited to 'demos/quickstart/protected/pages/Advanced')
-rw-r--r--demos/quickstart/protected/pages/Advanced/Assets.page6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Advanced/Assets.page b/demos/quickstart/protected/pages/Advanced/Assets.page
index 18b2a2be..d69a1bcd 100644
--- a/demos/quickstart/protected/pages/Advanced/Assets.page
+++ b/demos/quickstart/protected/pages/Advanced/Assets.page
@@ -28,8 +28,8 @@ Asset publishing is managed by the <tt>System.Web.TAssetManager</tt> module. By
<com:TTextHighlighter Language="xml" CssClass="source">
&lt;modules&gt;
&lt;module id="asset"
- class="System.Web.UI.TAssetManager"
- BasePath="images"
+ class="System.Web.TAssetManager"
+ BasePath="Web.images"
BaseUrl="images" /&gt;
&lt;/modules&gt;
</com:TTextHighlighter>
@@ -39,7 +39,7 @@ Asset publishing is managed by the <tt>System.Web.TAssetManager</tt> module. By
PRADO uses caching techniques to ensure the efficiency of asset publishing. Publishing an asset essentially requires file copy operation, which is expensive. To save unnecessary file copy operations, <tt>System.Web.TAssetManager</tt> only publishes an asset when it has a newer file modification time than the published file. When an application runs under the <tt>Performance</tt> mode, such timestamp checkings are also omitted.
</p>
<p>
-ADVISORY: Do not overuse asset publishing. The asset concept is mainly used to help better reuse and redistribute component classes. Normally, you should not use asset publishing for resources that are not bound to any components in an application. For example, you should not use asset publishing for images that are mainly used as design elements (e.g. logos, background images, etc.) Let Web server to directly serve these images will help improve the performance of your application.
+ADVISORY: Do not overuse asset publishing. The asset concept is mainly used to help better reuse and redistribute component classes. Normally, you should not use asset publishing for resources that are not bound to any component in an application. For example, you should not use asset publishing for images that are mainly used as design elements (e.g. logos, background images, etc.) Let Web server to directly serve these images will help improve the performance of your application.
</p>
<h2>A Toggle Button Example</h2>