如何在我的aspx页面的面板中显示视频

时间:2018-04-04 08:44:54

标签: c# asp.net video-streaming flashplayer-10

我有一个网络应用程序,在登录后,在我的仪表板页面中,我想要显示我在桌面上有视频的一些促销视频。

在aspx页面中,我有一个面板,里面我必须显示视频。

<asp:Content ID="DashboardHeadContent" runat="server" 
ContentPlaceHolderID="DashboardHeadContent">
</asp:Content>
<asp:Content ID="MainContent" runat="server" 
ContentPlaceHolderID="DashboardMainContent">
<asp:UpdatePanel ID="updatePanel1" runat="server" UpdateMode="Conditional">
    <ContentTemplate>
        <div id="div1" style="overflow: auto">
         <asp:Panel ID="panelUpdateProgress" runat="server" 
         CssClass="updateProgress">

             // I need put the video here to play

         </asp:Panel>
         </div>
    </ContentTemplate>
</asp:UpdatePanel>

作为aspx页面中视频播放的新手,请帮助我。

1 个答案:

答案 0 :(得分:0)

使用html5视频标签在asp.net中显示视频

<video width="320" height="240" controls>
<source src="video.mp4" type="video/mp4">
 Your browser does not support the video tag.
</video>

您可以在此处查看视频标记的所有可用属性: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video