silverlight URI不提交url变量


silverlight URI not submitting url variables

我有一个这样的URI…

the_song.Source = new Uri('index.php?song=blah');

正在被设置为媒体元素的来源。

然而,它加载失败,根据我的apache日志(和Firebug给我一个网络错误),silverlight只是试图加载index.php没有查询,这是至关重要的。

为什么会这样,我该如何修复它?

谢谢!

尝试将Uri设置为

the_song.Source = new Uri('index.php?song=blah', UriKind.Relative);

可能是工作