0

我有一个这样的URI...

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

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

但是,它无法加载,并且根据我的 apache 日志(和 Firebug 给我一个网络错误),silverlight 只是尝试在没有查询的情况下加载 index.php,这是至关重要的。

为什么会这样,我该如何解决?

谢谢!

4

1 回答 1

0

尝试使 Uri 为

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

这可能是工作。

于 2013-04-23T12:13:16.460 回答