neomorpheus
Programmer
I have a query which outputs the following
NAME AGE DATEOFBIRTH ADDRESS
John 33 12/21/66 123 John Lane
Joe 32 11/21/44 566 John Lane
Jack 23 07/17/55 8654 John Lane
At the end of each row, I have a modify button which submits the page. When I click on the modify button, I am unable to ascertain which recordset I wanted to modify. How can I go about doing that??
Please help
--------------------------------------------------------
<cfoutput>
<cfloop query = "qMyCustRecords">
<tr bgcolor="#bgcolor#">
<td><div align="center">#Name#</div></td>
<td><div align="center">#Age#</div></td>
<td><div align="center">#DOB#</div></td>
<td><div align="center">#Address#</div></td>
<td><div align="center"><input type=submit name="Modify" value="Change" class=button style=width:75></div></td>
</tr>
</cfloop>
</cfoutput>
NAME AGE DATEOFBIRTH ADDRESS
John 33 12/21/66 123 John Lane
Joe 32 11/21/44 566 John Lane
Jack 23 07/17/55 8654 John Lane
At the end of each row, I have a modify button which submits the page. When I click on the modify button, I am unable to ascertain which recordset I wanted to modify. How can I go about doing that??
Please help
--------------------------------------------------------
<cfoutput>
<cfloop query = "qMyCustRecords">
<tr bgcolor="#bgcolor#">
<td><div align="center">#Name#</div></td>
<td><div align="center">#Age#</div></td>
<td><div align="center">#DOB#</div></td>
<td><div align="center">#Address#</div></td>
<td><div align="center"><input type=submit name="Modify" value="Change" class=button style=width:75></div></td>
</tr>
</cfloop>
</cfoutput>