Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Friends,
I have one query,If i use a multi-user system in that on main page there is a dashboard consider it as a grid in that grid value of xyz table is displayed.
As it is a multiuser system in that data can be inserted in that xyz table, if any user inserts data in the xyz table as soon as the user inserts the data the changes gets automatically reflected in main page dashboard.
Just like mail systems of gmail and all.
Posted
Comments
[no name] 8-Feb-13 0:32am    
You can use AJAX for that !!
ShindeAR 8-Feb-13 0:39am    
thnx rohit..
will you please tell it briefly...?
Nandakishore G N 8-Feb-13 1:11am    
what have done till now, paste it?

Without timers? This is a legacy method which works: http://en.wikipedia.org/wiki/Meta_refresh[^].

—SA
 
Share this answer
 
Comments
bbirajdar 8-Feb-13 1:55am    
Yep.. The perfect old school way +5
Sergey Alexandrovich Kryukov 8-Feb-13 1:57am    
Thank you.
—SA
fjdiewornncalwe 11-Feb-13 14:46pm    
+5. Definitely the easiest way to go.
Sergey Alexandrovich Kryukov 11-Feb-13 14:55pm    
Thank you, Marcus. And I see nothing wrong in this old way...
—SA
fjdiewornncalwe 11-Feb-13 17:50pm    
It just works. I still use it.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 8-Feb-13 1:58am    
Good links, a 5.
—SA
_Amy 8-Feb-13 3:09am    
Thank you SA.. :)
C#
protected void Page_Load(object sender, EventArgs e)
   {
       string sss = "xxx";
       Response.AppendHeader("Refresh", "2");
       if (!IsPostBack)
       {
           Response.Write(sss);


       }


   }
 
Share this answer
 
HI,

You can use like this too using jquery its easy.

XML
<script type="text/javascript">
        setTimeout(function () {
            location = ''
        }, 3600)
    </script>


Thanks
 
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