diff options
Diffstat (limited to 'demos/quickstart/protected')
-rw-r--r-- | demos/quickstart/protected/pages/Layout.tpl | 13 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/chap3/HelloWorld.page | 2 |
2 files changed, 11 insertions, 4 deletions
diff --git a/demos/quickstart/protected/pages/Layout.tpl b/demos/quickstart/protected/pages/Layout.tpl index 2c22adce..d419fae3 100644 --- a/demos/quickstart/protected/pages/Layout.tpl +++ b/demos/quickstart/protected/pages/Layout.tpl @@ -17,11 +17,18 @@ Prado QuickStart Tutorial <com:TLinkButton Text="Hide TOC" Click="toggleTopicPanel" />
</div>
-<com:Pages.TopicList ID="TopicPanel" />
-
-<div id="content">
+<table width="100%" border="0" cellspacing="0" cellpadding="0">
+<tr>
+<td valign="top">
+<div id="content" width="100%">
<com:TContentPlaceHolder ID="body" />
</div>
+</td>
+<td valign="top" width="1">
+<com:Pages.TopicList ID="TopicPanel" />
+</td>
+</tr>
+</table>
<div id="footer">
Copyright © 2005 <a href="http://www.pradosoft.com">PradoSoft</a>.
diff --git a/demos/quickstart/protected/pages/chap3/HelloWorld.page b/demos/quickstart/protected/pages/chap3/HelloWorld.page index 8ded6585..1db35d8b 100644 --- a/demos/quickstart/protected/pages/chap3/HelloWorld.page +++ b/demos/quickstart/protected/pages/chap3/HelloWorld.page @@ -13,7 +13,7 @@ PRADO promotes component-based and event-driven Web programming. The button is r <p>
The code that a developer needs to write is merely the following event handler function, where <code>$sender</code> refers to the button object.
</p>
-<pre class="code">
+<pre class="source">
public function buttonClicked($sender,$param)
{
$sender->Text="Hello World";
|