<% if (!(Boolean)Session["authenticated"])
{ %>
<% }
else
{ %>
Welcome <%=MemberName %>!
<%=FormatHighScore(MemberHighScore)%>
<% } %>
<% Score[] hs = (Score[])Application["HighScores"];
for (int i = 0; i < hs.Length; ++i)
{
if (hs[i].Id != null && hs[i].Id.Length > 0)
{ %>
| <%=hs[i].Id%> |
<%=FormatHighScore(hs[i].Value)%> |
<% }
} %>