So I was looking for a way to update my dyn-dns host with C#. Google lead me to this site.
The post below got me 99% of the way there.
All I wanted to do was post a reply to that post stating the line:
needs to be changed to
I guess dyn-dns has made some changes since 2005. Change the 4 to an 8 and this solution will work again.
Just trying to help out the next guy Googling the same issue.
The post below got me 99% of the way there.
All I wanted to do was post a reply to that post stating the line:
Code:
response = response.Substring(response.IndexOf("\r\n\r\n") + 4); // Html
Code:
response = response.Substring(response.IndexOf("\r\n\r\n") + [B]8[/B]); // Html
Just trying to help out the next guy Googling the same issue.