DynDns Update with c# client

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • daveymatthews96
    New Member
    • Jun 2013
    • 1

    DynDns Update with c# client

    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:
    Code:
    response = response.Substring(response.IndexOf("\r\n\r\n") + 4); // Html
    needs to be changed to
    Code:
    response = response.Substring(response.IndexOf("\r\n\r\n") + [B]8[/B]); // Html
    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.
Working...