0

我的网页中有媒体播放器控件,我只能在 Internet Explorer 中获得媒体播放器,我无法在任何其他浏览器(如 Chrome 或 Firefox)中获得媒体播放器,代码是media.aspx.cs:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="Media-Player-ASP.NET-Control" Namespace="Media_Player_ASP.NET_Control"
TagPrefix="cc1" %>
  <cc1:media_player_control id="Media_Player_Control1" runat="server" 
       Height="314px" Width="518px" 
       style="z-index: 100; left: 4px; position: absolute; top: 9px">
    </cc1:media_player_control>
4

1 回答 1

0

通常 ActiveX 控件只能在 IE 中工作,因此 Media Player 是一个 ActiveX 控件,默认情况下它在其他浏览器中不起作用。

对于 Firefox,您可以查看Using the Windows Media Player Control with Firefox

于 2012-04-11T17:26:18.883 回答