Hi all,
I have to show an animated GIF under my aspx c# web site.
I used a response stream like this:
<IMG SRC="GIF_stream_reader.aspx"/>
The GIF is on a remote server (http:\\remoteserver.com/image.gif).
The problem is that only one frame of the gif is showed.
I only can select what frame to show using the "SelectImage" propriertie.
I work around this problem using httpdownload to download the remote gif and then
<IMG SRC="c:\mydownloaddirectory/downloaded.gif"/>
linking it directly on the local copy.
but sound like a bad solution.
Take note that I can't download the gif one time for ever because the content change every second and either I can't link it directly on the remote server
<IMG SRC="http:\\remoteserver.com/image.gif"/>
because the remote server is http and my web site is httpS and the browser is torturing the user with "you are sending information on an unprotected server" (or something like this)
Thanks for yours help and I apologise for the poor english.
Giovanni V.
I have to show an animated GIF under my aspx c# web site.
I used a response stream like this:
<IMG SRC="GIF_stream_reader.aspx"/>
The GIF is on a remote server (http:\\remoteserver.com/image.gif).
The problem is that only one frame of the gif is showed.
I only can select what frame to show using the "SelectImage" propriertie.
I work around this problem using httpdownload to download the remote gif and then
<IMG SRC="c:\mydownloaddirectory/downloaded.gif"/>
linking it directly on the local copy.
but sound like a bad solution.
Take note that I can't download the gif one time for ever because the content change every second and either I can't link it directly on the remote server
<IMG SRC="http:\\remoteserver.com/image.gif"/>
because the remote server is http and my web site is httpS and the browser is torturing the user with "you are sending information on an unprotected server" (or something like this)
Thanks for yours help and I apologise for the poor english.
Giovanni V.
Last edited: