Is there a need?

My .NET developers are telling me to try to send two values from flash to .NET 3 times…so from .NET it will be send to the db.

is there really a need to send it 3 times?.. can I just send it once?

they want this to be done 3 times so they are sure that its being sent.

please advice. :pirate3:

here is my code to send the values.


on (press) {
    myData = new LoadVars();
    myData.position = "5";
    myData.status = "I";
    myData.sendAndLoad("COCUpdates.aspx", myData, "POST");
    myData.onLoad = function(ok) {
        if(ok){
            unloadMovieNum(2);
            unloadMovieNum(14);
            unloadMovieNum(15);
            unloadMovieNum(16);
            unloadMovieNum(18);
            unloadMovieNum(20);
            unloadMovieNum(22);
            loadMovieNum("mainA.swf", 20);
            loadMovieNum("intro.swf", 14);
            //gotoAndStop(2)
            //_root.mc1.b3.confirmation.text = "Data Saved";
        }else{
            gotoAndStop(2)
            _root.mc1.b3.confirmation.text = "No Data Saved";   
        }
    }
}