git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
25 lines
866 B
HTML
25 lines
866 B
HTML
<html>
|
|
<head>
|
|
<title>Server scripts Demo</title>
|
|
</head>
|
|
<body>
|
|
<ewf:Form id="<%=Form.Name%>" renderchildren="noRender">
|
|
<%while (! Table.eof) { %>
|
|
<TABLE cellSpacing=0 cellPadding=0 border=1>
|
|
<TR>
|
|
<TD width=250 colSpan=2><%=Table.FindField("event_name").DisplayText %></TD>
|
|
<TD width=400 rowSpan=3><%=Table.FindField('event_description').AsString %></TD>
|
|
<TD width=200 rowSpan=3><Image src=<%=Form.CurrentImageSrc%>></TD>
|
|
</TR>
|
|
<TR>
|
|
<TD width=100><% =Table.FindField("event_date").DisplayText %></TD>
|
|
<TD width=150><% =Table.FindField("event_time").DisplayText %></TD></TR>
|
|
<TR>
|
|
<TD width=205 colSpan=2><%=Table.FindField("ticket_price").DisplayText %></TD></TR></TABLE>
|
|
<% Table.next; } %>
|
|
|
|
</ewf:Form>
|
|
</body>
|
|
</html>
|
|
|