我有一个表格,显示查询结果。 查询具有从表单提交的记录,用户选择它将显示的时间和日期 月/年。
我希望能够在特定的一个月内完成该月的结果 显示尚未输入任何结果的文字。
例如:
[月]尚无结果。
monthly_enter_date是显示结果的日期。
最好的方法是什么?
<cfset dtToday = Now() />
<table >
<thead><th>Month</th></thead>
<cfloop query="getdates">
<cfset timesetting = #getdates.monthly_enter_date#>
<cfif dtToday gt timesetting>
<tbody>
<cfoutput >
<tr>
<td><a href="cse_allusers_summary_results.cfm?month=#getdates.month#&year=#getdates.year#"> #MonthAsString(month)# #year#</a></td>
</tr>
</cfoutput>
</cfif>
</cfloop>
</td>
</table>
答案 0 :(得分:2)
这样的事情怎么样:
<cfif getdates.recordcount is 0>
static text to indicate no data
<cfelse>
all that code in your question
</cfif>