Hello,
I need to use flash or movies on my ASP.NET page. I am keeping the data for those files in the BLOB data field on ORACLE database. Do you have any example how to retrieve data from ORACLE to show on the page?
I try to use this code, but it requires a physical path to the file.
I need get data from the database:
Imports Osmosis.Web.UI.Controls.FlashMovie
Dim movie As Osmosis.Web.UI.Controls.FlashMovie
Dim sPhysicalAppPath As String
sPhysicalAppPath = Request.PhysicalApplicationPath.ToString()
movie = New Osmosis.Web.UI.Controls.FlashMovie
movie.FlashOutputType = Osmosis.Web.UI.FlashOutputType.ClientScriptVersion Dection
movie.MovieName = sPhysicalAppPath + "/fish.swf"
movie.MajorPluginVersion = 7
movie.MajorPluginVersionRevision = 0
movie.MinorPluginVersion = 0
movie.MinorPluginVersionRevision = 0
movie.MovieHeight = "85px"
movie.MovieWidth = "85px"
movie.AutoLoop = True
movie.AutoPlay = True
movie.MovieVariables.Add("MyVar1", "MyValue1")
movie.MovieVariables.Add("MyVar2", "MyValue2")
movie.MovieVariables.Add("MyVar3", "MyValue3")
PlaceHolder1.Controls.Add(movie)
movie.Dispose()
movie = Nothing
Any help and suggestions will be nice.
Thanks
Dmitriy :)
