Embed object is not working
-
Hi,i wan to show the video in asp.net page,so am using embed object.it is working in my local machine but after hosting that page not working in my machine.am adding this code in datalist control.embed code as follows Databindcode as follows DataTable VideoTable = new DataTable(); DataColumn VideoColumn; VideoColumn = new DataColumn(); VideoColumn.DataType = Type.GetType("System.String"); VideoColumn.ColumnName = "VIDEO"; VideoTable.Columns.Add(VideoColumn); foreach (string Files in Directory.GetFiles(System.Web.HttpContext.Current.Server.MapPath("Video"), "*.wmv")) { VideoTable.Rows.Add(Files); } One more doubt.will the embed object work all the browsers or it is a browser specific.in my local machine it is IE6 only.if it is a browser specific which is the best solution for showing the video