我从网上下载了一个媒体播放器控件,然后添加到我的工具箱中。然后我将它拖放到我的网页,但它没有工作......
cc1:Media_Player_Control ID="Media_Player_Control1" runat="server"
MovieURL="./video/yaarian.wmv"
这是我的代码
答案 0 :(得分:0)
确保路径正确 e.g。
答案 1 :(得分:0)
检查control registration tag并确保已在bin文件夹中加载程序集:
<%@ Register TagPrefix="cc1" Namespace="MyApp.Controls" Assembly="MyApp" %>
然后,尝试以下方法:
<cc1:Media_Player_Control ID="Media_Player_Control1" runat="server"
MovieURL="~/video/yaarian.wmv" runat="server" />