File get uploaded in database and also get uploaded in folder but not playing on click on video
video.aspx
<div style="font-style: normal; font-size: medium">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" CellPadding="4" DataKeyNames="V_Id" ForeColor="#333333" GridLines="None" Height="294px" Width="782px" s BorderColor="Black" BorderStyle="Solid" CssClass="auto-style1" Font-Bold="True" Font-Overline="False" Font-Size="Medium">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Columns>
<asp:HyperLinkField DataNavigateUrlFields="V_link" Text="Video link" HeaderText="Video link" >
<HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" />
</asp:HyperLinkField>
<asp:BoundField DataField="V_discription" HeaderText="Video discription" SortExpression="V_discription" >
<HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" />
</asp:BoundField>
</Columns>
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" HorizontalAlign="Center" VerticalAlign="Middle" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:StudentConnectionString14 %>" SelectCommand="SELECT [V_Id], [V_discription], [V_link] FROM [Agri_video]"></asp:SqlDataSource>
</div>
code behind
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
Response.Clear();
Response.ContentType = "application/octet-stream/mp4";
Response.AppendHeader("Content-Disposition", "filename=" + e.CommandArgument);
Response.TransmitFile(Server.MapPath("~/video/") + e.CommandArgument);
Response.End();
}