HELP! More problems with ASP and Flash

I thought I had this problem fixed last week, but I’ve done something that is now making this not work. I have a simple form in Flash consisting of a single input text field and a submit button. On the form, I also have 2 dynamic text boxes for showing the text that is sent to and received from ASP.
Here’s my Flash code:
[AS]
var LV = new LoadVars();
LV.onLoad = function(ok) {
if (ok) {
response_txt.text += “Resulting=”+LV.Result;
}
};
submit_mc.onRelease = function() {
objNew = new Object();
objNew.Name = name_txt.text;
LV = objNew;
sending_txt.text = “Name:”+LV.Name+newline;
LV.sendAndLoad(“http://localhost/Testing/test.asp”, LV, “POST”);
};
[/AS]
And in my ASP page, all I’m doing is displaying the name as a queryString:


<%@Language=VBScript%>
<%
Dim sName
sName = Request.Form("Name")
Response.Write("&Result=" & sName)
%>

Everything looks fine. I even checked to see if there was a problem in the ASP by loading the page straight from the browser and it was OK. I then tried a similar HTML form and when I got to the ASP page, the string I got back was

&Result=Chris

What am I doing wrong?!

Chris