SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
56
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- try
- {
- WebRequest webreq = WebRequest.Create("http://checkip.dyndns.org/");
- WebResponse response = webreq.GetResponse();
- StreamReader streamread = new StreamReader(response.GetResponseStream());
- HtmlAgilityPack.HtmlDocument htmldoc = new HtmlAgilityPack.HtmlDocument();
- htmldoc.Load(streamread);
- MessageBox.Show(htmldoc.DocumentNode.SelectSingleNode("//body").InnerText);
- }
- catch (Exception ex)
- {
- MessageBox.Show("Ein Fehler ist aufgetreten: " + ex.ToString(), "", MessageBoxButtons.OK, MessageBoxIcon.Error);
- throw;
- }
RAW Paste Data

