Edit: sorry, question was about ASP.NET
If you were using an AxShockwaveFlash object in C#, you would set the variables this way:
AxShockwaveFlash movie; // already exists
string xmlPath = "some path";
movie.FlashVars = "xmlPath=" + xmlPath; // url-encoded variables
Then in AS2:
var xmlPath:String = _level0.xmlPath;
Or in AS3:
var xmlPath:String = loaderInfo.parameters.xmlPath;
