hello,on your guidance i was able to save the filepath to my database while using the "FileUpload" control.thank you a lot. Now i need to display them in a grid view i.e display the videos that i have uploaded .its clear that the code in the "source" tab must be edited to suit the occasion.this is the code i have written.
<asp:TemplateField HeaderText="video">
<ItemTemplate>
<iframe id ="vd" height ="240" width ="320" runat ="server" src ="~/video.aspx"></iframe>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="download">
<ItemTemplate>
<asp:Button ID="btn1" runat="server" CommandName="download" />
</ItemTemplate>
</asp:TemplateField>
i need to display the video and download it from the grisview.thanks in advance.