使用HTML5';ASP.NET中的视频标签

使用HTML5';ASP.NET中的视频标签,asp.net,html,Asp.net,Html,我在asp.net中使用的视频标记如下: <%@ Page Title="" Language="C#" MasterPageFile="~/fort.master" AutoEventWireup="true" CodeFile="Training.aspx.cs" Inherits="Training" %> <asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" run

我在asp.net中使用的视频标记如下:

    <%@ Page Title="" Language="C#" MasterPageFile="~/fort.master" AutoEventWireup="true"
CodeFile="Training.aspx.cs" Inherits="Training" %>


    <asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">


    <video width="320" height="240" controls="controls">
     <source src="movie.mp4" type="video/mp4" />   
    </video>     


   </asp:Content>


当我运行该程序时,视频显示为“不可点击”。它可以在html文件中正常工作,只是在.aspx文件中不能

也许你的道路错了?呈现的HTML应该与从ASP.NET提供的相同,因为视频代码没有服务器控件或交互。您在母版页中使用的doctype是什么?