Jump to content

buscar código fonte do webbrowser


zeroonnet

Recommended Posts

Já experimentas-te desta forma?

webBrowser1.Document.ToString();

Se não der experimenta assim

HtmlElementCollection ec = webBrowser1.Document.GetElementsByTagName("html");
String res = ec.count > 0 ? ec[0].OuterHtml : String.Empty;

"Give a man a fish and he will eat for a day; Teach a man to fish and he will eat for a lifetime. The moral? READ THE MANUAL !"

Sign on a computer system consultant's desk

Link to comment
Share on other sites

HtmlDocument documento = webBrowser1.Document;

foreach(HtmlElement e in documento.GetElementsByTagName("div")) {
   // Verificas se é os divs que queres
   if(e.Id != "epgFrame")
      continue;

   if(e.GetAttribute("class") != "epgFrame")
     continue;

   //o elemento é o que queres, agora fazes com ele o que quizeres
   // ...
}

"Give a man a fish and he will eat for a day; Teach a man to fish and he will eat for a lifetime. The moral? READ THE MANUAL !"

Sign on a computer system consultant's desk

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.