Posted on: 1/16/2015 2:33:47 PM | Views : 500

hi all,
i want to upload video in asp.net
i have upload video sucessfully.
now when i am uploading video i want to generate thumbnail how can i do that?
i am using the below code
upload.aspx
<asp:Label ID="Label11" runat="server" CssClass="forlabel" >Video Path:</asp:Label> <asp:FileUpload ID="filedistict" runat="server" /><br /> <asp:Button ID="btnUpload" runat="server" Text="Update" style=" width: 100px; height: 30px" CssClass="forbutton" onclick="Button1_Click" /> upload.aspx.cs
if (filedistict.PostedFile.ContentLength > 0) { fileName = filedistict.PostedFile.FileName; fileExt = fileName.Substring(fileName.L ...

Go to the complete details ...