hello there,
I have an asp.net application that would 'simulate' real-time video. I did that acquiring multiple picture from an mysql database.
The problem is how would it be displayed on the web-page.? I refresh the page 1 second per picture, the result is the pictures are choppy and flickery.
Response.AppendHeader("Refresh", "1")
How can I make the refresh rate of the page 4times per second? or is there any implementation for it to be displayed in a continent way.
I would really appreciate if you will reply. good day (^_^)...
here is the script that i am using to read the images from the database,.
If dr.Read Then dr.Read() Response.ContentType = "image/jpeg" 'gets or sets the type of output stream Response.BinaryWrite(dr.Item("file")) 'writes a stream of binary characters to the http output stream Else Response.Write("There is no current active webccast.") End If dr.Close()