Click here to Skip to main content
15,891,749 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi all

I have connected to my IP camera, but I have to press f5 to refresh it. Is there any way to refresh the camera image by itself. I don't want to refresh the hole webpage.

Thank you

Jimmy
Posted
Comments
Richard C Bishop 13-Feb-13 17:27pm    
You could use AJAX and do asynchronous postbacks to refresh a certain part of the page.
AspDotNetDev 13-Feb-13 18:01pm    
How are you currently adding the image to the page? If it's a constant filename, such as "\\ip_camera\image.jpeg", you could just use JavaScript to keep changing the query string, such as "\\ip_camera\image.jpeg?version=88".

Hello,

You can ask the browser to automatically refresh your page using the Meta tag in the head section.

XML
<!DOCTYPE html>
<html>
    <head>
        <META HTTP-EQUIV="REFRESH" CONTENT="1">
    </head>
    <body>
        what ever you had before
    </body>
</html>


The value of CONTENT is the number of seconds for the auto refresh.

Valery.
 
Share this answer
 
Comments
Member 9655777 13-Feb-13 19:55pm    
I tried it before, but it is refresh the whole webpage. I just need to refresh the image, like streaming image.
Place your image content inside Ajax UpdatePanel. And use Ajax timer to refresh the same content for regular interval of time.

Ex:
XML
<asp:ScriptManager runat="server" ID="ScriptManager1" />
        <asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
        </asp:Timer>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
            </Triggers>
            <ContentTemplate>
                <asp:Label ID="Label1" runat="server"></asp:Label>
            </ContentTemplate>
        </asp:UpdatePanel>

c# code below..
C#
protected void Timer1_Tick(object sender, EventArgs e)
    {
        Label1.Text = DateTime.Now.ToShortTimeString().ToString();
    }


Above code will fetch current time for regular interval of 1 second. You place your code inside update panel and give time as much you wanted to refresh the content..
..
 
Share this answer
 
To refresh the image but not refresh the whole webpage.
HTML
<img src="url " id="reloader" onload="setTimeout('document.getElementById(\'reloader\').src=\'url\'+new Date().getMilliseconds()', 500)" />


url is link of the source.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900