Hi there,
I have generated Pages.as, Pages.cfc, PagesGateway.cfc via the
coldfusion cfc wizard of a database table.
All is good for retrieving groups of objects and single objects, I just
need to know how to use the save method in the PagesGateway.cfc.
Below is the code i'm using on a button click, its generating errors as
I am unsure what to put in the .save() parameters.
Any help would be appreciated!
Many thanks,
Brett
<mx:RemoteObject id="pages"
....
private function savePage():void
{
var obj:Object = new Object();
obj.page_name = "test";
pages.save(<WHAT DO I PUT HERE?>);
}