Pass variables from ASP to MX

[font=verdana, arial, helvetica][size=2]This ASP line works fine for my flash movie:

Response.Write “&firstname=Mike&”

But this returns one quotation mark:

Response.Write “&firstname=” & firstname & “&”

I also tried this:

test = “&firstname=” & firstname & “&”

Response.write test

That doesn’t work either.

How can I put variable names in the Response.write and get Flash MX to take it.

Here is my Action Script:

myData = new LoadVars();
myData.onLoad = function() {
leaguename.text = this.leaguename;
};
myData.load(“livedraftvar.asp”);
stop();[/size][/font]