Question
Delete Button
I have a page that has delete buttons on every row. I am
having trouble getting the row to delete.
Here is the code on my table data include file:
<input type="Submit" name="btnDelete" value="Delete" class="Deletebutton" onmouseover="this.style.cursor='hand'" style="width: 75;" onClick="return confirm('Do you really want to delete?');">
Here is the code on my main page
<cfif isdefined("btnDelete")>
<cfquery name="qDeleteRecord" datasource="#session.datasource_name#">
DELETE FROM Table
WHERE UniqueColumn='#UniqueColumn#'
</cfquery>
<cfset Message="Record Deleted...">
RESULTS:
qDeleteRecord (Datasource=DS, Time=0ms, Records=0) in C:\Inetpub\wwwroot\Test.cfm
DELETE FROM Table
WHERE Column Name=''
Form Fields:
BTNDELETE=Delete
Column Name=
Here is the code on my table data include file:
<input type="Submit" name="btnDelete" value="Delete" class="Deletebutton" onmouseover="this.style.cursor='hand'" style="width: 75;" onClick="return confirm('Do you really want to delete?');">
Here is the code on my main page
<cfif isdefined("btnDelete")>
<cfquery name="qDeleteRecord" datasource="#session.datasource_name#">
DELETE FROM Table
WHERE UniqueColumn='#UniqueColumn#'
</cfquery>
<cfset Message="Record Deleted...">
RESULTS:
qDeleteRecord (Datasource=DS, Time=0ms, Records=0) in C:\Inetpub\wwwroot\Test.cfm
DELETE FROM Table
WHERE Column Name=''
Form Fields:
BTNDELETE=Delete
Column Name=