cftable
orを使用cfloop
して、ColdFusion でアイテムのテーブルを出力します。しかし、テーブルの行の 1 つをクリックしたときにエディター ページを呼び出す正しい方法は何でしょうか?
コードは次のとおりです。
<table class="grid">
<tr>
<th>id</th>
<th>Date</th>
<th>Description</th>
<th>Status</th>
<th>Urgency</th>
<th>Severity</th>
</tr>
<cfloop query="GetIssues">
<tr>
<td><cfoutput>#id#</cfoutput></td>
<td><cfoutput>#CreatedOn#</cfoutput></td>
<td><cfoutput>#ShortDesc#</cfoutput></td>
<td><cfoutput>#Status#</cfoutput></td>
<td><cfoutput>#Urgency#</cfoutput></td>
<td><cfoutput>#Severity#</cfoutput></td>
</tr>
</cfloop>
</table>
エディター ページへの GET リクエストを作成するために使用できますa href
が、それは正しい/安全な方法ですか?