I have tried everything (of course not) but I can´t solve this problem. I have a Webbrowser in my form and I send a question with submit to a website (that works). Then, of course, I need to find the answer when the website i updated. There I have some problem. The answer fom the website is something like this:
What I need to get from above is "given-name", in this case "Anders" and "family-name", in this case "Karlsson". What code should I use to retreive this?
(As you see I also have some problem writing on this forum) Any ideas?
HTML:
</div>
<div class="title row">
<h1 class="fn n">
<span class="given-name">Anders</span>
<span class="family-name">Karlsson</span>
</h1>
</div>
What I need to get from above is "given-name", in this case "Anders" and "family-name", in this case "Karlsson". What code should I use to retreive this?
VB.NET:
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]Private[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]Sub[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] WebBrowser1_DocumentCompleted([/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]ByVal[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] sender [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]As[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]Object[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2], [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]ByVal[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] e [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]As[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] WebBrowserDocumentCompletedEventArgs) _[/SIZE]
[SIZE=2]
[/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]Handles[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] WebBrowser1.DocumentCompleted[/SIZE]
[SIZE=2]
[/SIZE]
[SIZE=2]
[COLOR=green] TextBox1.Text = WebBrowser1.Document.GetElementsByTagName("given-name").ToString[/COLOR][/SIZE]
[SIZE=2]
[/SIZE]
[SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]End[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]Sub[/COLOR][/SIZE][/COLOR][/SIZE]
(As you see I also have some problem writing on this forum) Any ideas?