Here is the code...
<cfupdate datasource="A" tablename="amendment" formfields="amendmentid,amenderid,legalid,date,text">
and the other version...
<cfquery datasource="A">
update amendment
set amenderid=#amenderid#, legalid=#legalid#, date=#createodbcdate(date)#, text='#text#'
where amendmentid=#amendmentid#
</cfquery>
These both would work fine under 4.5, but when the form is submitted in MX to execute these, the browser says the page cannot be found. If I comment these out, then the page runs. Has anyone had this before?
<cfupdate datasource="A" tablename="amendment" formfields="amendmentid,amenderid,legalid,date,text">
and the other version...
<cfquery datasource="A">
update amendment
set amenderid=#amenderid#, legalid=#legalid#, date=#createodbcdate(date)#, text='#text#'
where amendmentid=#amendmentid#
</cfquery>
These both would work fine under 4.5, but when the form is submitted in MX to execute these, the browser says the page cannot be found. If I comment these out, then the page runs. Has anyone had this before?