# Asp+flash

**URL:** https://forum.kirupa.com/t/asp-flash/178908
**Category:** Uncategorized
**Created:** [February 15, 2006, 7:42am UTC](https://forum.kirupa.com/t/asp-flash/178908 "2006-02-15T07:42:23Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mayur](https://avatars.discourse-cdn.com/v4/letter/m/a9adbd/32.png) [@mayur](https://forum.kirupa.com/u/mayur)
#### Post date: [February 15, 2006, 7:42am UTC](https://forum.kirupa.com/t/asp-flash/178908/1 "2006-02-15T07:42:23Z")

</div>

the asp for me is just not working…  
i have this code in my flash file  
:

```php

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 …
