zeroonnet Posted November 1, 2007 at 08:43 PM Report Share #144547 Posted November 1, 2007 at 08:43 PM Como é que posso meter numa string o código fonte todo do site que está no webbrowser? Fiquem Bem... Link to comment Share on other sites More sharing options...
Betovsky Posted November 1, 2007 at 09:22 PM Report Share #144552 Posted November 1, 2007 at 09:22 PM 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 More sharing options...
zeroonnet Posted November 2, 2007 at 03:32 PM Author Report Share #144683 Posted November 2, 2007 at 03:32 PM não deu nenhum deles :S Link to comment Share on other sites More sharing options...
Betovsky Posted November 3, 2007 at 03:13 PM Report Share #144910 Posted November 3, 2007 at 03:13 PM 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now