我使用cftable
或cfloop
來輸出ColdFusion中的項目表。但點擊其中一個表格行時調用編輯器頁面的正確方法是什麼?編輯ColdFusion中的表格行
下面是代碼:
<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>
我可以用a href
使GET請求來編輯頁面,但它是正確的/安全的方式?
首先....不要使用CFTABLE。第二...我們可以看到一些代碼嗎? –
@Scott Stroz:更新... – Paul