Question
loadVars problem in FMS
I am running a very simple code, using
loadVars inside FMS, to load an ASP
script.
======================================
var lvData = new loadVars();
var lvR = new loadVars();
lvR.onLoad = function(BS) {
if(BS) trace("do something");
}
lvData.file = "test-2.swf"
lvData.sendAndLoad(" http://localhost/some.asp", lvR);
=======================================
The script works fine, except within
some.asp, the value of
Request.Form("file") is "testB2Fswf".
In other words, "-" is replace by B,
and "." is replaced by F.
Is there a way around this problem?
loadVars inside FMS, to load an ASP
script.
======================================
var lvData = new loadVars();
var lvR = new loadVars();
lvR.onLoad = function(BS) {
if(BS) trace("do something");
}
lvData.file = "test-2.swf"
lvData.sendAndLoad(" http://localhost/some.asp", lvR);
=======================================
The script works fine, except within
some.asp, the value of
Request.Form("file") is "testB2Fswf".
In other words, "-" is replace by B,
and "." is replaced by F.
Is there a way around this problem?
