the asp for me is just not working…
i have this code in my flash file
:
var result_lv:LoadVars = new LoadVars();
var send_lv:LoadVars = new LoadVars();
login.clickHandler = function(evt:Object) {
result_lv.onLoad = function(success:Boolean) {
if (success) {
result_ta.text = "success"
} else {
result_ta.text = "Error connecting to server.";
}
};
send_lv.sendAndLoad("http://localhost/timeSheet/mayur.asp", result_lv, "POST");
};
and just a reponse.write("dONE ") in asp … when i run asp alone in browser it works…
when i publish the flash file in the flash IDE just by ctrl+enter I can “suceess” in the text box…its just not owrking when i open the swf in browser .
Please help …