git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
26 lines
590 B
HTML
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>
|