| 1 |
lars |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
|
|
3 |
|
|
|
4 |
<com:THead Title="PRADO QuickStart Source View">
|
|
|
5 |
<meta http-equiv="content-language" content="en"/>
|
|
|
6 |
</com:THead>
|
|
|
7 |
|
|
|
8 |
<body>
|
|
|
9 |
<com:TForm>
|
|
|
10 |
<div id="sourceList">
|
|
|
11 |
<table border="0">
|
|
|
12 |
<com:TRepeater ID="SourceList">
|
|
|
13 |
<prop:ItemTemplate>
|
|
|
14 |
<tr>
|
|
|
15 |
<td align="right"><%# $this->DataItem['type']%>:</td>
|
|
|
16 |
<td><a href="<%# $this->DataItem['active']?'':$this->DataItem['url']%>"><%# $this->DataItem['name']%></a></td>
|
|
|
17 |
</tr>
|
|
|
18 |
</prop:ItemTemplate>
|
|
|
19 |
</com:TRepeater>
|
|
|
20 |
</table>
|
|
|
21 |
<com:TCheckBox ID="showNumbers" Text="Show Line Numbers" Checked="true" AutoPostBack="true" />
|
|
|
22 |
</div>
|
|
|
23 |
<div id="sourceView">
|
|
|
24 |
<h3 style="text-align:center"><%= $this->FilePath %></h3>
|
|
|
25 |
<com:TTextHighlighter ID="Highlighter" ShowLineNumbers=<%= $this->showNumbers->Checked %> CssClass="source">
|
|
|
26 |
<com:TLiteral ID="SourceView" />
|
|
|
27 |
</com:TTextHighlighter>
|
|
|
28 |
</div>
|
|
|
29 |
</com:TForm>
|
|
|
30 |
</body>
|
|
|
31 |
</html>
|