Click here to Skip to main content
15,881,859 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all

I am generating dynamic graph using Graph control in dot net with good look and feel that will refresh for every 30 seconds(Every 30 seconds values are automatically inserted in db) in asp.net web application. I'm doing it in Framework 4.

I'm using only Graph control in dot net, not using Javascript or anyother.

can any one suggest modal for it...



Regards
Karthik.R
Posted

1 solution

in the old days of simple html, since I was never a web expert, I used to produce pages that looked like this :-

HTML
<html>
    <head>
        <title> Karthik Ravi - Graph of x vs y </title>
        <meta http-equiv="refresh" content="30" >
    </head>
    <body>
    <!-- graph code goes here - -->
    </body>
</html>


note the meta tag :-)

auto refresh can be disabled in browsers, and this was pretty simple, but it did for us non web guru's
 
Share this answer
 
v2

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