git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
51 lines
1002 B
HTML
51 lines
1002 B
HTML
|
|
<html>
|
|
<head>
|
|
<title>
|
|
<%= Page.Title %>
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<h1><%= Application.Title %></h1>
|
|
|
|
<% if (EndUser.Logout != null) { %>
|
|
<% if (EndUser.DisplayName != '') { %>
|
|
<h1>Welcome <%=EndUser.DisplayName %></h1>
|
|
<% } %>
|
|
<% if (EndUser.Logout.Enabled) { %>
|
|
<a href="<%=EndUser.Logout.AsHREF%>">Logout</a>
|
|
<% } %>
|
|
<% if (EndUser.LoginForm.Enabled) { %>
|
|
<a href=<%=EndUser.LoginForm.AsHREF%>>Login</a>
|
|
<% } %>
|
|
<% } %>
|
|
|
|
<h2><%= Page.Title %></h2>
|
|
|
|
<table cellspacing="0" cellpadding="0">
|
|
<td>
|
|
<% e = new Enumerator(Pages)
|
|
s = ''
|
|
c = 0
|
|
for (; !e.atEnd(); e.moveNext())
|
|
{
|
|
if (e.item().Published)
|
|
{
|
|
if (c>0) s += ' | '
|
|
if (Page.Name != e.item().Name)
|
|
s += '<a href="' + e.item().HREF + '">' + e.item().Title + '</a>'
|
|
else
|
|
s += e.item().Title
|
|
c++
|
|
}
|
|
}
|
|
if (c>1) Response.Write(s)
|
|
%>
|
|
</td>
|
|
</table>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|