We are using method post. This software I am working on was
built by two previous interns who hardly documented anything. Here
is part of the scrips:
<cfform action="#cgi.script_name#" method="post"
name="profile" preservedata="true" preloader="yes" format="flash"
height="705" width="730" style="#formstyle#" timeout="3600"
wmode="transparent" onload="#onFormLoad#">
<cfinput type="hidden" name="server" value="#service#">
<cfformitem type="script"> function Update(UpdateType,
item1, item2, item3, item4, item5, item6, item7, item8, item9,
item10){
mx.managers.CursorManager.setBusyCursor();
mx.controls.Alert.titleStyleDeclaration = "windowStyles";
<cfoutput>
//create connection
var connection:mx.remoting.Connection =
mx.remoting.NetServices.createGatewayConnection("
http://#cgi.HTTP_HOST#/flashservices/gateway/");
//declare service
var myService1:mx.remoting.NetServiceProxy;
var UserName = '#Session.UserName#';
</cfoutput>
var returnID = '';
var responseHandler1 = {};
I am trying to fix this page where the update password
feature does not work. I think it is something with the scrips, but
since I don't know this script language they are using, I want to
try to tackle this problem in ColdFusion. I am also using
dreamweaver which does not provide any help with the script
coding.