# ASP Variable Help

**URL:** https://forum.kirupa.com/t/asp-variable-help/188842
**Category:** flash
**Created:** [May 11, 2006, 9:25am UTC](https://forum.kirupa.com/t/asp-variable-help/188842 "2006-05-11T09:25:53Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![thedaveyb](https://avatars.discourse-cdn.com/v4/letter/t/4af34b/32.png) [@thedaveyb](https://forum.kirupa.com/u/thedaveyb)
#### Post date: [May 11, 2006, 9:25am UTC](https://forum.kirupa.com/t/asp-variable-help/188842/1 "2006-05-11T09:25:53Z")

</div>

Hi i got a mini player im building, one track just a single mp3 to be played. this is brought in via asp from a database.

On My First Frame i have…

```auto
mySound1 = new Sound();
    strMP3 = MP3;
    loadVariables("getdetailstrack.asp", "0");
    trace(MP3);

```

theres a little preloader code on a blank MC as well but that shouldnt be a problem as works fine already…

and my play button code is…

```auto
// Play
on (release) {
    _root.nextSound = 1;
    _root.playMe = 1;
    _root.mySound1.loadSound("mp3/"+ strMP3 +".mp3", false);
    
}

```

but for some reason its not picking up the mp3 name - the getdetails page is fine also and returns mp3=thedaveyb.mp3

any ideas?
