7
Answers

Update Data without refreshing whole browser

sebastian

sebastian

14y
7.7k
1
Hey :)

I'm pretty new to C#, but I decided to start a little project to understand the way of C#!

So, I want to get some data from the html file of a webpage. I'm currently doing that with the following method:
 private string[] GetRessources()
{
string[] ressources = new string[3];

ressources[0] = browser.Document.GetElementById("res1").InnerHtml.;
ressources[1] = browser.Document.GetElementById("res2").InnerHtml;
ressources[2] = browser.Document.GetElementById("res3").InnerHtml;

return ressources;
}

after running the method, I'm actually getting those ressources!
But on the real webpage, the ressources are refreshing every second. In my program they aren't!
Can I somehow repeat the method every second? I've tried to put the code lines 5-7 in an endless while-loop, but that causes my program to "not response", logically ^^.

If you told me any method to check for a change and update those ressources if there were, without letting the program cash, i'd be very thankfull! I'm having this problem with some other methods, too.

thanks! Basti
Answers (7)
0
Nazmul Badsha

Nazmul Badsha

NA 505 13.3k 7y
  1. SELECT Empid,Empname,Deptname  
  2. FROM Employee  
  3. INNER JOIN Department ON Department.Deptid = Employee.Deptid  
This is the best code.
0
Tapan Patel

Tapan Patel

NA 8.1k 101k 7y
  1. SELECT Empid,  
  2.             Empname,  
  3.             Deptname  
  4. FROM Employee   
  5. INNER JOIN Department ON Department.Deptid = Employee.Deptid   
Next Recommended Forum