在过去的几年中,我一直在缓慢地建立自己的唱片数据库来保存我的黑胶唱片收藏,最近我将其扩展到包括歌词和专辑照片,在圣诞节前,我一直在寻找免费的mp3播放器来制作唱片发现Wimpy 7.81。我的网站的部分结构如下-已使用_(缩进的下划线)
MyPlayList.xml代码如下
当前加载Web窗体时,可以从the弱的播放器中播放曲目,但是由于大小原因,它不是将MP3存储在根文件夹中的合适位置
Looking online I created a virtual directory in IIS called 音乐收藏 and the folder on my D Drive is called MusicTest, the structure in IIS now looks like
XML格式代码如下
我已经使用IUSR和IIS_IUSRS分配了权限,我尝试了多种方法来使mp3曲目从虚拟目录运行
我无法理解为什么,感谢您的帮助
C#:
AlbumCovers (folder)
MusicFolder (folder - mp3 is stored here)
Wimpy_7.81 (folder)
_____frmMyPlayLists.aspx
__________frmMyPlayLists.aspx.cs
_____MyPlayList.xml
MyPlayList.xml代码如下
XML:
<?xml version="1.0" encoding="utf-8" ?>
<playlist>
<item>
<file>../MusicFolder/04 Waterfront.mp3</file>
<title>Waterfront</title>
<artist>Simple Minds</artist>
<image>path/to/image.jpg</image>
</item>
</playlist>
当前加载Web窗体时,可以从the弱的播放器中播放曲目,但是由于大小原因,它不是将MP3存储在根文件夹中的合适位置
Looking online I created a virtual directory in IIS called 音乐收藏 and the folder on my D Drive is called MusicTest, the structure in IIS now looks like
C#:
AlbumCovers (folder)
MusicFolder (folder - mp3 is stored here)
Wimpy_7.81 (folder)
_____frmMyPlayLists.aspx
__________frmMyPlayLists.aspx.cs
_____MyPlayList.xml
MusicCollection (virtual folder - this does not show in the solution explorer in visual studio)
XML格式代码如下
XML:
<?xml version="1.0" encoding="utf-8" ?>
<playlist>
<item>
<file>MusicCollection/04 Waterfront.mp3</file>
<title>Waterfront</title>
<artist>Simple Minds</artist>
<image>path/to/image.jpg</image>
</item>
</playlist>
我已经使用IUSR和IIS_IUSRS分配了权限,我尝试了多种方法来使mp3曲目从虚拟目录运行
XML:
<file>MusicCollection/04 Waterfront.mp3</file>
<file>../ 音乐收藏 / 04 Waterfront.mp3</file>
<file>04 Waterfront.mp3</file>
我无法理解为什么,感谢您的帮助
由主持人最后编辑: