积极答复者
Silverlight 2.0 不支持.me域名吗??

问题
-
由于直观!以下网址是一个播放器示例源码,这是由MediaElemtn制作的一个播放器程序,其中有一个bbs.jishu.me/域名下的.mp3文件,下载正常。而在使用一个.com域名下的音乐文件正常。如何解决呢?
2008年12月28日 1:25
全部回复
-
学者 写: 由于直观!以下网址是一个播放器示例源码,这是由MediaElemtn制作的一个播放器程序,其中有一个bbs.jishu.me/域名下的.mp3文件,下载正常。而在使用一个.com域名下的音乐文件正常。如何解决呢?
http://bbs.jishu.me/music/Autumngoodbye.mp3
可以用你那网址的播放器下载播放,跟域名无关,只要给到Soruce的Uri正确就可以了
2008年12月28日 2:53 -
Code Snippet
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SilverlightApplication2.Page"
Width="640" Height="480"><Grid x:Name="LayoutRoot" Background="White">
<MediaElement Margin="56,152,77,168" AutoPlay="True" Source="http://bbs.jishu.me/music/Autumngoodbye.mp3"/>
</Grid>
</UserControl>Code Snippet<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SilverlightApplication2.Page"
Width="640" Height="480"><Grid x:Name="LayoutRoot" Background="White">
<MediaElement Margin="56,152,77,168" AutoPlay="True" Source="http://www.learn-chinese-songs.com/ZhouJielun-DaoXiang.mp3"/>
</Grid>
</UserControl>2008年12月28日 4:03