小弟我该如何接收flash播放器传过来的参数

我该怎么接收flash播放器传过来的参数?
1.flash播放器加载代码 可运行在客户端网页
 loader.load(new URLRequest("http://localhost:1234/Interface.aspx?id=" + _videoXml.id+"&url="+this.loaderInfo.url+"&test=TEST"))
这个表示播放器一加载就把这3个参数传到我服务器http://localhost:1234/Interface.aspx页面

2.我在Interface.aspx 服务器端Page_Load事件接收
 protected void Page_Load(object sender, EventArgs e)
{
  string id = Request.QueryString["id"].ToString();
  string url = Request.QueryString["url"].ToString();
  string test = Request.QueryString["test"].ToString();
  //插入数据库操作(略)
}

这样没接收到 不是写在Interface.aspx页面的Page_Load事件接收吗?
我直接在地址栏http://localhost:1234/Interface.aspx?id=111&url=www.localhost.com&test=456
这样可以接收到并插入数据库表。

我该怎么接收flash播放器传过来的参数?



------解决方案--------------------
目前我只知道winfrim的,通过fscommand(发送的内容)来跟winfrim互动,帮你顶贴,顺便学习~