I have an web application in which after login , in my dashboard page, i want to show the video of some promotions on which i have the video in my desktop.
in the aspx page, I have a panel and inside that i have to show the video.
<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>
As am new to this video play in the aspx page, Kindly help me on this.