silverlight URI不提交url变量

时间:2013-04-22 04:02:26

标签: php .net silverlight uri

我有这样的URI ......

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

将其设置为媒体元素的来源。

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

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

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试将Uri设为

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

可能有用。