Componentes.Terceros.DevExp.../official/x.30/ExpressWeb Framework/Demos/Delphi/MegaDemo/umyfavor.html
2007-12-16 17:06:54 +00:00

26 lines
590 B
HTML

<HTML>
<HEAD>
<TITLE><%=Context.Page.Title%></TITLE>
</HEAD>
<BODY bgcolor="white">
<!--#include file="head.html"-->
<% var NoSelectedBooks = true;
for(var i = 0; i < cxWebDataSource1.RecordCount; i ++)
{
var S = 'cxWebButton' + i;
if(Session.GetValue(S) == true)
{
NoSelectedBooks = false;
break;
}
}
%>
<ewf:Form id="<%=Form.Name%>">
<% if(NoSelectedBooks) {%>
<BR><H3>No selected books in favor</H3><BR>
<% } %>
</ewf:Form>
<!--#include file="tail.html"-->
</BODY>
</HTML>