Data Controls :: Display And Play MP4 Videos Using File Path Stored In Database Using DataList
Mar 8, 2014
I want use flowplayer to play my flv video file. I have a datalist like below :
<asp:DataList ID="frmViedo" runat="server">
<ItemTemplate>
<div class="flowplayer"> <video>
<source type="video/flv" src='<%# Eval("Vurl" , "~/Videos/Video/{0}") %>'>
</video></div>
</ItemTemplate></asp:DataList>
In code behind :
if (Request.QueryString["vid"] != null) {
frmViedo.DataSource = video.GetVideoById(Convert.ToInt32(Request.QueryString["vid"]));
frmViedo.DataBind();
} public OleDbDataReader GetVideoById(int id) {
string strSelect = "select * from Video where VID = @VID";
return ExecuteReader(CommandType.Text, strSelect, new OleDbParameter[]{
new OleDbParameter("@VID" , id),
}); }
But it don't work and i get this error :
Adobe Flash is disabled for this page, click player area to enable. Why?
View 1 Replies
Similar Messages:
May 7, 2015
I have a DB in which I store Video File Path. Now I want to show that video on my ASP page. especially demo with FlowPlayer.
View 1 Replies
Oct 7, 2013
how to read the image from excel shhet if i have foder which contain images .
so i want to dispalying image from excel shhet
.how can i do this wheather how can i assign the path of image/foder in excel shhet
View 1 Replies
Oct 12, 2012
I am developing audio related project for that i have stored movie names with mp3 file paths in database I am displaying movie names in grid view after clicking on movie name related mp3 file paths will be display in details view i am unable to play that files in details view how to do this ? Here i am storing original mp3 files in one folder in solution explorer and paths in database
View 1 Replies
Feb 13, 2013
i want to display image which is stored in some folder and its path is stored in database table. i used your link [URL] for the same but i am not storing any thing like data column in my table and have passed name column to Byte[]and so its giving datatype error there. what is the way to convert it to byte?
View 1 Replies
Dec 27, 2011
i want to display image which is stored in some folder and its path is stored in database table. i used your link URL... for the same but i am not storing any thing like data column in my table and have passed name column to Byte[]and so its giving datatype error there.
View 1 Replies
Aug 10, 2013
Follow this Link [URL] .... in this tutorial can play video popup but i wnat to retrive this video link in sqlserver using datalist ...
View 1 Replies
May 7, 2015
how to upload videos and after uploaded the videos then play it..using flash player......
View 1 Replies
Feb 3, 2011
My requirment is to display all videos by clicking that videos it want to play how to do this .how to add mediaplayer into list view and play the videos.i want to display in this format http://www.youtube.com/results?search_query=sports&aq=f
View 3 Replies
May 7, 2015
I want to shore youtube url in to database then want to show video in datalist or gridview by using the url. in datalist there will be video player show.
View 1 Replies
Oct 19, 2013
How to display images in crystal report from database am inserting address (image folder) of images into the database, not inserting images into the database...
View 1 Replies
Jun 25, 2012
how to play an audio file on my website using The Song Path stored in the database
View 1 Replies
Jul 5, 2012
I use these code to dispalying image from database. [URL]... I use these code for my data list
<asp:DataList ID="DataList1" runat="server" RepeatColumns="4"
RepeatDirection="Horizontal">
<ItemTemplate>
<table class="DDLh">
[code]....
For displaying image we should write this code
<asp:image ToolTip = "ASP Image Control" ID="Image13" runat="server" ImageUrl ="~/imageH.aspx?ImageID=48" Height="156px" Width="174px"></asp:image>
now here in my data list what should i write instead of this code?untill it show my image from database?
<asp:image ID="img1" runat="server" CssClass="TPH" ImageUrl='<%#Eval("image","image/house/{0}")%>' BorderStyle="Solid" BorderWidth="1px" BorderColor="#c9c9c7" />
View 1 Replies
May 7, 2015
i have a folder in server for saving my images and inside database i save the image name , now the issue is i want to display the image in image control in datalist how to do that
View 1 Replies
Jan 14, 2011
I am using asp.net 4.0 with C#. I have a webpage which shows a tabular list and upon clicking any one of it, the path of the swf file is queried to the access database and then the file needs to be played on the same webpage.
View 6 Replies
Jun 23, 2010
i want to use asp media control to show videos stored in database
<asp:MediaPlayer ID="MediaPlayer1" runat="server"
Height="240px" Width="320px" MediaSkinSource="~/skins/Basic.xaml">
</asp:MediaPlayer>
here i am retereving videos as per videoid using linq
ELearnDataContext eld = new ELearnDataContext();
var x = (from a in eld.Videos
where a.VideoID== 1
select a).First();
but i don't know how i can use asp.net mediacontrol to show reterieved videos
View 3 Replies
Mar 20, 2013
i use visual studio 2010 i have stored image into sql server in binary format and how to retrive that image(which is in binary format) and display in image contro
View 1 Replies
Jan 22, 2010
I am using ASP.NET 2008 web developer and i dont know how to share youtube videos in my pages.
I want to play youtube videos in my site without upload
View 4 Replies
Jul 29, 2013
Follow this link: [URL] ...
In this tutorial when we upload Videos, it will upload in new FlowPlayer window, but I want to retrieve videos from sql server and play in same player window.
View 1 Replies
Sep 13, 2012
I want play video file in a webpage
How to display video from client folder
View 1 Replies
Mar 5, 2013
i want to display already stored text content (sql server) into asp.net webpage at table format
Now i want to display at table.. alternatively, i want table for gridview. already view at this format. it is gridview..
QaIdQueryAnswer
7
the captain of indian cricket team Mahendra Singh Dhoni
Mahendra Singh Dhoni, commonly known as M. S. Dhoni, is an Indian cricketer and the current captain of the Indian national cricket team and the Chennai Super Kings cricket team. Born: July 7, 1981 (age 31), Ranchi Height: 1.75 m Spouse: Sakshi Dhoni (m. 2010) Salary: 3.5 million USD (2012) Education: DAV Jawahar Vidya Mandir, Shyamali Parents: Pan singh, devki devi.
View 1 Replies
Sep 23, 2012
In gridview I have two link button that is "VIEW" and "DOWNLOAD" if I click "view" that pdf file will display in an other page if I click download that file will be downloaded.. how can i do this..
View 1 Replies
Jan 28, 2011
I want to media player control to play the videos in my website
View 3 Replies
Mar 3, 2010
[Code]....
[Code]....
[Code]....
View 5 Replies
May 21, 2012
how to store video file in database and which control to display the video..
View 1 Replies